#include <itkAndImageFilter.h>
Inheritance diagram for itk::AndImageFilter< TInputImage1, TInputImage2, TOutputImage >:
Public Types | |
typedef AndImageFilter | Self |
typedef BinaryFunctorImageFilter< TInputImage1, TInputImage2, TOutputImage, Functor::AND< typename TInputImage1::PixelType, typename TInputImage2::PixelType, typename TOutputImage::PixelType > > | Superclass |
typedef SmartPointer< Self > | Pointer |
typedef SmartPointer< const Self > | ConstPointer |
Static Public Member Functions | |
Pointer | New () |
Protected Member Functions | |
AndImageFilter () | |
virtual | ~AndImageFilter () |
This class is parametrized over the types of the two input images and the type of the output image. Numeric conversions (castings) are done by the C++ defaults.
Since the logical AND 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>( input1_pixel & input2_pixel )
Where "&" is the boolean AND operator in C++.
Definition at line 62 of file itkAndImageFilter.h.
|
Reimplemented from itk::BinaryFunctorImageFilter< TInputImage1, TInputImage2, TOutputImage, TFunction >. Definition at line 82 of file itkAndImageFilter.h. |
|
Reimplemented from itk::BinaryFunctorImageFilter< TInputImage1, TInputImage2, TOutputImage, TFunction >. Definition at line 81 of file itkAndImageFilter.h. |
|
Standard class typedefs. Reimplemented from itk::BinaryFunctorImageFilter< TInputImage1, TInputImage2, TOutputImage, TFunction >. Definition at line 74 of file itkAndImageFilter.h. |
|
Reimplemented from itk::BinaryFunctorImageFilter< TInputImage1, TInputImage2, TOutputImage, TFunction >. Definition at line 80 of file itkAndImageFilter.h. |
|
Definition at line 88 of file itkAndImageFilter.h. |
|
Definition at line 89 of file itkAndImageFilter.h. |
|
Method for creation through the object factory. Reimplemented from itk::BinaryFunctorImageFilter< TInputImage1, TInputImage2, TOutputImage, TFunction >. |