ITK
5.0.0
Insight Segmentation and Registration Toolkit
|
#include <itkSpatialFunctionImageEvaluatorFilter.h>
Evaluates a SpatialFunction onto a source image.
SpatialFunctionImageEvaluatorFilter walks an input image and evaluates the function at every pixel location. The output of the spatial function and the pixel type of the output image must be compatible.
Like its parent ImageToImageFilter, this class functions in the filtering pipeline and produces a unique output image.
Definition at line 43 of file itkSpatialFunctionImageEvaluatorFilter.h.
Public Types | |
using | ConstPointer = SmartPointer< const Self > |
using | FunctionType = TSpatialFunction |
using | FunctionValueType = typename FunctionType::OutputType |
using | IndexType = typename TOutputImage::IndexType |
using | OutputImageRegionType = typename TOutputImage::RegionType |
using | PixelType = typename TOutputImage::PixelType |
using | Pointer = SmartPointer< Self > |
using | PositionType = typename FunctionType::InputType |
using | Self = SpatialFunctionImageEvaluatorFilter |
using | SizeType = typename TInputImage::SizeType |
using | Superclass = ImageToImageFilter< TInputImage, TOutputImage > |
Public Types inherited from itk::ImageToImageFilter< TInputImage, TOutputImage > | |
using | ConstPointer = SmartPointer< const Self > |
using | InputImageConstPointer = typename InputImageType::ConstPointer |
using | InputImagePixelType = typename InputImageType::PixelType |
using | InputImagePointer = typename InputImageType::Pointer |
using | InputImageRegionType = typename InputImageType::RegionType |
using | InputImageType = TInputImage |
using | OutputImagePixelType = typename Superclass::OutputImagePixelType |
using | OutputImageRegionType = typename Superclass::OutputImageRegionType |
using | Pointer = SmartPointer< Self > |
using | Self = ImageToImageFilter |
using | Superclass = ImageSource< TOutputImage > |
Public Types inherited from itk::ImageSource< TOutputImage > | |
using | ConstPointer = SmartPointer< const Self > |
using | DataObjectIdentifierType = Superclass::DataObjectIdentifierType |
using | DataObjectPointer = DataObject::Pointer |
using | DataObjectPointerArraySizeType = Superclass::DataObjectPointerArraySizeType |
using | OutputImagePixelType = typename OutputImageType::PixelType |
using | OutputImagePointer = typename OutputImageType::Pointer |
using | OutputImageRegionType = typename OutputImageType::RegionType |
using | OutputImageType = TOutputImage |
using | Pointer = SmartPointer< Self > |
using | Self = ImageSource |
using | Superclass = ProcessObject |
Public Types inherited from itk::ProcessObject | |
using | ConstPointer = SmartPointer< const Self > |
using | DataObjectIdentifierType = DataObject::DataObjectIdentifierType |
using | DataObjectPointer = DataObject::Pointer |
using | DataObjectPointerArray = std::vector< DataObjectPointer > |
using | DataObjectPointerArraySizeType = DataObjectPointerArray::size_type |
using | MultiThreaderType = MultiThreaderBase |
using | NameArray = std::vector< DataObjectIdentifierType > |
using | Pointer = SmartPointer< Self > |
using | Self = ProcessObject |
using | Superclass = Object |
Public Types inherited from itk::Object | |
using | ConstPointer = SmartPointer< const Self > |
using | Pointer = SmartPointer< Self > |
using | Self = Object |
using | Superclass = LightObject |
Public Types inherited from itk::LightObject | |
using | ConstPointer = SmartPointer< const Self > |
using | Pointer = SmartPointer< Self > |
using | Self = LightObject |
Static Public Member Functions | |
static Pointer | New () |
Static Public Member Functions inherited from itk::Object | |
static bool | GetGlobalWarningDisplay () |
static void | GlobalWarningDisplayOff () |
static void | GlobalWarningDisplayOn () |
static Pointer | New () |
static void | SetGlobalWarningDisplay (bool flag) |
Static Public Member Functions inherited from itk::LightObject | |
static void | BreakOnError () |
static Pointer | New () |
Static Public Attributes | |
static constexpr unsigned int | NDimensions = TInputImage::ImageDimension |
Static Public Attributes inherited from itk::ImageToImageFilter< TInputImage, TOutputImage > | |
static constexpr unsigned int | InputImageDimension = TInputImage::ImageDimension |
static constexpr unsigned int | OutputImageDimension = TOutputImage::ImageDimension |
Static Public Attributes inherited from itk::ImageSource< TOutputImage > | |
static constexpr unsigned int | OutputImageDimension = TOutputImage::ImageDimension |
Private Attributes | |
FunctionType * | m_PixelFunction |
Additional Inherited Members | |
Protected Types inherited from itk::ImageToImageFilter< TInputImage, TOutputImage > | |
using | InputToOutputRegionCopierType = ImageToImageFilterDetail::ImageRegionCopier< Self::OutputImageDimension, Self::InputImageDimension > |
using | OutputToInputRegionCopierType = ImageToImageFilterDetail::ImageRegionCopier< Self::InputImageDimension, Self::OutputImageDimension > |
Static Protected Member Functions inherited from itk::ImageSource< TOutputImage > | |
static const ImageRegionSplitterBase * | GetGlobalDefaultSplitter () |
static ITK_THREAD_RETURN_FUNCTION_CALL_CONVENTION | ThreaderCallback (void *arg) |
Protected Attributes inherited from itk::ImageSource< TOutputImage > | |
bool | m_DynamicMultiThreading |
Protected Attributes inherited from itk::ProcessObject | |
TimeStamp | m_OutputInformationMTime |
bool | m_Updating |
Protected Attributes inherited from itk::LightObject | |
std::atomic< int > | m_ReferenceCount |
using itk::SpatialFunctionImageEvaluatorFilter< TSpatialFunction, TInputImage, TOutputImage >::ConstPointer = SmartPointer< const Self > |
Definition at line 53 of file itkSpatialFunctionImageEvaluatorFilter.h.
using itk::SpatialFunctionImageEvaluatorFilter< TSpatialFunction, TInputImage, TOutputImage >::FunctionType = TSpatialFunction |
Type of function.
Definition at line 77 of file itkSpatialFunctionImageEvaluatorFilter.h.
using itk::SpatialFunctionImageEvaluatorFilter< TSpatialFunction, TInputImage, TOutputImage >::FunctionValueType = typename FunctionType::OutputType |
Return type of function.
Definition at line 80 of file itkSpatialFunctionImageEvaluatorFilter.h.
using itk::SpatialFunctionImageEvaluatorFilter< TSpatialFunction, TInputImage, TOutputImage >::IndexType = typename TOutputImage::IndexType |
Image index type alias.
Definition at line 68 of file itkSpatialFunctionImageEvaluatorFilter.h.
using itk::SpatialFunctionImageEvaluatorFilter< TSpatialFunction, TInputImage, TOutputImage >::OutputImageRegionType = typename TOutputImage::RegionType |
Typedef to describe the output image region type.
Definition at line 74 of file itkSpatialFunctionImageEvaluatorFilter.h.
using itk::SpatialFunctionImageEvaluatorFilter< TSpatialFunction, TInputImage, TOutputImage >::PixelType = typename TOutputImage::PixelType |
Image pixel value type alias.
Definition at line 71 of file itkSpatialFunctionImageEvaluatorFilter.h.
using itk::SpatialFunctionImageEvaluatorFilter< TSpatialFunction, TInputImage, TOutputImage >::Pointer = SmartPointer< Self > |
Definition at line 52 of file itkSpatialFunctionImageEvaluatorFilter.h.
using itk::SpatialFunctionImageEvaluatorFilter< TSpatialFunction, TInputImage, TOutputImage >::PositionType = typename FunctionType::InputType |
Typedef describing vector info.
Definition at line 83 of file itkSpatialFunctionImageEvaluatorFilter.h.
using itk::SpatialFunctionImageEvaluatorFilter< TSpatialFunction, TInputImage, TOutputImage >::Self = SpatialFunctionImageEvaluatorFilter |
Standard class type aliases.
Definition at line 50 of file itkSpatialFunctionImageEvaluatorFilter.h.
using itk::SpatialFunctionImageEvaluatorFilter< TSpatialFunction, TInputImage, TOutputImage >::SizeType = typename TInputImage::SizeType |
Image size type alias.
Definition at line 65 of file itkSpatialFunctionImageEvaluatorFilter.h.
using itk::SpatialFunctionImageEvaluatorFilter< TSpatialFunction, TInputImage, TOutputImage >::Superclass = ImageToImageFilter< TInputImage, TOutputImage > |
Definition at line 51 of file itkSpatialFunctionImageEvaluatorFilter.h.
|
protected |
|
overrideprotecteddefault |
|
virtual |
Create an object from an instance, potentially deferring to a factory. This method allows you to create an instance of an object that is exactly the same type as the referring object. This is useful in cases where an object has been cast back to a base class.
Reimplemented from itk::Object.
|
overrideprotectedvirtual |
Method for evaluating the implicit function over the image.
Reimplemented from itk::ImageSource< TOutputImage >.
|
virtual |
Run-time type information (and related methods).
Reimplemented from itk::ImageToImageFilter< TInputImage, TOutputImage >.
|
static |
Method for creation through the object factory.
|
inline |
Set the internal spatial function.
Definition at line 86 of file itkSpatialFunctionImageEvaluatorFilter.h.
|
private |
The function that will be evaluated over the image
Definition at line 98 of file itkSpatialFunctionImageEvaluatorFilter.h.
|
static |
Number of dimensions.
Definition at line 62 of file itkSpatialFunctionImageEvaluatorFilter.h.