#include <itkNotImageFilter.h>
Inheritance diagram for itk::NotImageFilter< TInputImage, TOutputImage >:


Public Types | |
| typedef NotImageFilter | Self |
| typedef UnaryFunctorImageFilter< TInputImage, TOutputImage, Functor::NOT< typename TInputImage::PixelType, typename TOutputImage::PixelType > > | Superclass |
| typedef SmartPointer< Self > | Pointer |
| typedef SmartPointer< const Self > | ConstPointer |
Static Public Member Functions | |
| Pointer | New () |
Protected Member Functions | |
| NotImageFilter () | |
| virtual | ~NotImageFilter () |
This class is parametrized over the types of an input image and the type of the output image. Numeric conversions (castings) are done by the C++ defaults.
Since the logical NOT operation is only defined in C++ for integer types, the images passed to this filter must comply with the requirement of using integer pixel type.
The total operation over one pixel will be
output_pixel = static_cast<OutputPixelType>( !input_pixel )
Where "!" is the unary NOT operator in C++.
Definition at line 62 of file itkNotImageFilter.h.
|
|||||
|
Reimplemented from itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, TFunction >. Definition at line 80 of file itkNotImageFilter.h. |
|
|||||
|
Reimplemented from itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, TFunction >. Definition at line 79 of file itkNotImageFilter.h. |
|
|||||
|
Standard class typedefs. Reimplemented from itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, TFunction >. Definition at line 73 of file itkNotImageFilter.h. |
|
|||||
|
Reimplemented from itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, TFunction >. Definition at line 78 of file itkNotImageFilter.h. |
|
|||||||||
|
Definition at line 86 of file itkNotImageFilter.h. |
|
|||||||||
|
Definition at line 87 of file itkNotImageFilter.h. |
|
|||||||||
|
Method for creation through the object factory. Reimplemented from itk::UnaryFunctorImageFilter< TInputImage, TOutputImage, TFunction >. |
1.3.5 written by Dimitri van Heesch,
© 1997-2000