ITK
4.1.0
Insight Segmentation and Registration Toolkit
|
#include <itkAndImageFilter.h>
Public Types | |
typedef SmartPointer< const Self > | ConstPointer |
typedef SmartPointer< Self > | Pointer |
typedef AndImageFilter | Self |
typedef BinaryFunctorImageFilter < TInputImage1, TInputImage2, TOutputImage, Functor::AND < typename TInputImage1::PixelType, typename TInputImage2::PixelType, typename TOutputImage::PixelType > > | Superclass |
Public Member Functions | |
virtual ::itk::LightObject::Pointer | CreateAnother (void) const |
virtual const char * | GetNameOfClass () const |
typedef (Concept::LogicalOperators< typename TInputImage1::PixelType, typename TInputImage2::PixelType, typename TOutputImage::PixelType >) Input1Input2OutputLogicalOperatorsCheck | |
Static Public Member Functions | |
static Pointer | New () |
AndImageFilter () | |
virtual | ~AndImageFilter () |
AndImageFilter (const Self &) | |
void | operator= (const Self &) |
Implements the AND logical operator pixel-wise between two images.
This class is templated 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 82 of file itkAndImageFilter.h.
typedef SmartPointer< const Self > itk::AndImageFilter< TInputImage1, TInputImage2, TOutputImage >::ConstPointer |
Reimplemented from itk::BinaryFunctorImageFilter< TInputImage1, TInputImage2, TOutputImage, Functor::AND< TInputImage1::PixelType, TInputImage2::PixelType, TOutputImage::PixelType > >.
Definition at line 100 of file itkAndImageFilter.h.
typedef SmartPointer< Self > itk::AndImageFilter< TInputImage1, TInputImage2, TOutputImage >::Pointer |
Reimplemented from itk::BinaryFunctorImageFilter< TInputImage1, TInputImage2, TOutputImage, Functor::AND< TInputImage1::PixelType, TInputImage2::PixelType, TOutputImage::PixelType > >.
Definition at line 99 of file itkAndImageFilter.h.
typedef AndImageFilter itk::AndImageFilter< TInputImage1, TInputImage2, TOutputImage >::Self |
Standard class typedefs.
Reimplemented from itk::BinaryFunctorImageFilter< TInputImage1, TInputImage2, TOutputImage, Functor::AND< TInputImage1::PixelType, TInputImage2::PixelType, TOutputImage::PixelType > >.
Definition at line 93 of file itkAndImageFilter.h.
typedef BinaryFunctorImageFilter< TInputImage1, TInputImage2, TOutputImage, Functor::AND< typename TInputImage1::PixelType, typename TInputImage2::PixelType, typename TOutputImage::PixelType > > itk::AndImageFilter< TInputImage1, TInputImage2, TOutputImage >::Superclass |
Reimplemented from itk::BinaryFunctorImageFilter< TInputImage1, TInputImage2, TOutputImage, Functor::AND< TInputImage1::PixelType, TInputImage2::PixelType, TOutputImage::PixelType > >.
Definition at line 98 of file itkAndImageFilter.h.
itk::AndImageFilter< TInputImage1, TInputImage2, TOutputImage >::AndImageFilter | ( | ) | [inline, protected] |
End concept checking
Definition at line 119 of file itkAndImageFilter.h.
virtual itk::AndImageFilter< TInputImage1, TInputImage2, TOutputImage >::~AndImageFilter | ( | ) | [inline, protected, virtual] |
End concept checking
Definition at line 120 of file itkAndImageFilter.h.
itk::AndImageFilter< TInputImage1, TInputImage2, TOutputImage >::AndImageFilter | ( | const Self & | ) | [private] |
End concept checking
virtual::itk::LightObject::Pointer itk::AndImageFilter< TInputImage1, TInputImage2, TOutputImage >::CreateAnother | ( | void | ) | const [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::BinaryFunctorImageFilter< TInputImage1, TInputImage2, TOutputImage, Functor::AND< TInputImage1::PixelType, TInputImage2::PixelType, TOutputImage::PixelType > >.
virtual const char* itk::AndImageFilter< TInputImage1, TInputImage2, TOutputImage >::GetNameOfClass | ( | ) | const [virtual] |
Runtime information support.
Reimplemented from itk::BinaryFunctorImageFilter< TInputImage1, TInputImage2, TOutputImage, Functor::AND< TInputImage1::PixelType, TInputImage2::PixelType, TOutputImage::PixelType > >.
static Pointer itk::AndImageFilter< TInputImage1, TInputImage2, TOutputImage >::New | ( | ) | [static] |
Method for creation through the object factory.
Reimplemented from itk::BinaryFunctorImageFilter< TInputImage1, TInputImage2, TOutputImage, Functor::AND< TInputImage1::PixelType, TInputImage2::PixelType, TOutputImage::PixelType > >.
void itk::AndImageFilter< TInputImage1, TInputImage2, TOutputImage >::operator= | ( | const Self & | ) | [private] |
End concept checking
Reimplemented from itk::BinaryFunctorImageFilter< TInputImage1, TInputImage2, TOutputImage, Functor::AND< TInputImage1::PixelType, TInputImage2::PixelType, TOutputImage::PixelType > >.
itk::AndImageFilter< TInputImage1, TInputImage2, TOutputImage >::typedef | ( | Concept::LogicalOperators< typename TInputImage1::PixelType, typename TInputImage2::PixelType, typename TOutputImage::PixelType > | ) |
Begin concept checking This class requires Input1Input2OutputLogicalOperatorsCheck in the form of ( Concept::LogicalOperators< typename TInputImage1::PixelType, typename TInputImage2::PixelType, typename TOutputImage::PixelType > )