#include <itkNaryFunctorImageFilter.h>
Inheritance diagram for itk::NaryFunctorImageFilter< TInputImage, TOutputImage, TFunction >:
Public Types | |
typedef NaryFunctorImageFilter | Self |
typedef InPlaceImageFilter< TInputImage, TOutputImage > | Superclass |
typedef SmartPointer< Self > | Pointer |
typedef SmartPointer< const Self > | ConstPointer |
typedef TFunction | FunctorType |
typedef TInputImage | InputImageType |
typedef InputImageType::Pointer | InputImagePointer |
typedef InputImageType::RegionType | InputImageRegionType |
typedef InputImageType::PixelType | InputImagePixelType |
typedef TOutputImage | OutputImageType |
typedef OutputImageType::Pointer | OutputImagePointer |
typedef OutputImageType::RegionType | OutputImageRegionType |
typedef OutputImageType::PixelType | OutputImagePixelType |
typedef Array< InputImagePixelType > | NaryArrayType |
Public Member Functions | |
virtual const char * | GetNameOfClass () const |
FunctorType & | GetFunctor () |
void | SetFunctor (FunctorType &functor) |
Static Public Member Functions | |
Pointer | New () |
Protected Member Functions | |
NaryFunctorImageFilter () | |
virtual | ~NaryFunctorImageFilter () |
void | ThreadedGenerateData (const OutputImageRegionType &outputRegionForThread, int threadId) |
This class is parameterized over the types of the input images and the type of the output image. It is also parameterized by the operation to be applied. A Functor style is used to represent the function.
All the input images are of the same type.
Definition at line 41 of file itkNaryFunctorImageFilter.h.
|
Reimplemented from itk::InPlaceImageFilter< TInputImage, TOutputImage >. Reimplemented in itk::NaryAddImageFilter< TInputImage, TOutputImage >, and itk::NaryMaximumImageFilter< TInputImage, TOutputImage >. Definition at line 50 of file itkNaryFunctorImageFilter.h. |
|
Some typedefs. Definition at line 59 of file itkNaryFunctorImageFilter.h. |
|
Reimplemented from itk::InPlaceImageFilter< TInputImage, TOutputImage >. Definition at line 63 of file itkNaryFunctorImageFilter.h. |
|
Reimplemented from itk::InPlaceImageFilter< TInputImage, TOutputImage >. Definition at line 61 of file itkNaryFunctorImageFilter.h. |
|
Reimplemented from itk::InPlaceImageFilter< TInputImage, TOutputImage >. Definition at line 62 of file itkNaryFunctorImageFilter.h. |
|
Some convenient typedefs. Reimplemented from itk::InPlaceImageFilter< TInputImage, TOutputImage >. Definition at line 60 of file itkNaryFunctorImageFilter.h. |
|
Definition at line 68 of file itkNaryFunctorImageFilter.h. |
|
Reimplemented from itk::InPlaceImageFilter< TInputImage, TOutputImage >. Definition at line 67 of file itkNaryFunctorImageFilter.h. |
|
Reimplemented from itk::InPlaceImageFilter< TInputImage, TOutputImage >. Definition at line 65 of file itkNaryFunctorImageFilter.h. |
|
Superclass typedefs. Reimplemented from itk::InPlaceImageFilter< TInputImage, TOutputImage >. Definition at line 66 of file itkNaryFunctorImageFilter.h. |
|
Superclass typedefs. Reimplemented from itk::InPlaceImageFilter< TInputImage, TOutputImage >. Definition at line 64 of file itkNaryFunctorImageFilter.h. |
|
Reimplemented from itk::InPlaceImageFilter< TInputImage, TOutputImage >. Reimplemented in itk::NaryAddImageFilter< TInputImage, TOutputImage >, and itk::NaryMaximumImageFilter< TInputImage, TOutputImage >. Definition at line 49 of file itkNaryFunctorImageFilter.h. |
|
Standard class typedefs. Reimplemented from itk::InPlaceImageFilter< TInputImage, TOutputImage >. Reimplemented in itk::NaryAddImageFilter< TInputImage, TOutputImage >, and itk::NaryMaximumImageFilter< TInputImage, TOutputImage >. Definition at line 47 of file itkNaryFunctorImageFilter.h. |
|
Reimplemented from itk::InPlaceImageFilter< TInputImage, TOutputImage >. Reimplemented in itk::NaryAddImageFilter< TInputImage, TOutputImage >, and itk::NaryMaximumImageFilter< TInputImage, TOutputImage >. Definition at line 48 of file itkNaryFunctorImageFilter.h. |
|
|
|
Definition at line 94 of file itkNaryFunctorImageFilter.h. |
|
Get the functor object. The functor is returned by reference. (Functors do not have to derive from itk::LightObject, so they do not necessarily have a reference count. So we cannot return a SmartPointer). Definition at line 74 of file itkNaryFunctorImageFilter.h. |
|
Run-time type information (and related methods). Reimplemented from itk::InPlaceImageFilter< TInputImage, TOutputImage >. |
|
Method for creation through the object factory. Reimplemented from itk::Object. Reimplemented in itk::NaryAddImageFilter< TInputImage, TOutputImage >, and itk::NaryMaximumImageFilter< TInputImage, TOutputImage >. |
|
Set the functor object. This replaces the current Functor with a copy of the specified Functor. This allows the user to specify a functor that has ivars set differently than the default functor. This method requires an operator!=() be defined on the functor (or the compiler's default implementation of operator!=() being appropriate). Definition at line 82 of file itkNaryFunctorImageFilter.h. |
|
NaryFunctorImageFilter can be implemented as a multithreaded filter. Therefore, this implementation provides a ThreadedGenerateData() routine which is called for each processing thread. The output image data is allocated automatically by the superclass prior to calling ThreadedGenerateData(). ThreadedGenerateData can only write to the portion of the output image specified by the parameter "outputRegionForThread"
Reimplemented from itk::ImageSource< TOutputImage >. |