ITK
4.1.0
Insight Segmentation and Registration Toolkit
|
#include <itkSubtractImageFilter.h>
Public Types | |
typedef SmartPointer< const Self > | ConstPointer |
typedef SmartPointer< Self > | Pointer |
typedef SubtractImageFilter | Self |
typedef BinaryFunctorImageFilter < TInputImage1, TInputImage2, TOutputImage, Functor::Sub2 < 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::AdditiveOperators< typename TInputImage1::PixelType, typename TInputImage2::PixelType, typename TOutputImage::PixelType >) Input1Input2OutputAdditiveOperatorsCheck | |
Static Public Member Functions | |
static Pointer | New () |
SubtractImageFilter () | |
virtual | ~SubtractImageFilter () |
SubtractImageFilter (const Self &) | |
void | operator= (const Self &) |
Pixel-wise subtraction of two images.
Subtract each pixel from image2 from its corresponding pixel in image1:
Output = Input1 - Input2.
This is done using
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.
Additionally, a constant can be subtracted from every pixel in an image using:
SetInput1( image1 ); SetConstant2( constant );
Definition at line 94 of file itkSubtractImageFilter.h.
typedef SmartPointer< const Self > itk::SubtractImageFilter< TInputImage1, TInputImage2, TOutputImage >::ConstPointer |
Reimplemented from itk::BinaryFunctorImageFilter< TInputImage1, TInputImage2, TOutputImage, Functor::Sub2< TInputImage1::PixelType, TInputImage2::PixelType, TOutputImage::PixelType > >.
Reimplemented in itk::SubtractConstantFromImageFilter< TInputImage, TConstant, TOutputImage >.
Definition at line 112 of file itkSubtractImageFilter.h.
typedef SmartPointer< Self > itk::SubtractImageFilter< TInputImage1, TInputImage2, TOutputImage >::Pointer |
Reimplemented from itk::BinaryFunctorImageFilter< TInputImage1, TInputImage2, TOutputImage, Functor::Sub2< TInputImage1::PixelType, TInputImage2::PixelType, TOutputImage::PixelType > >.
Reimplemented in itk::SubtractConstantFromImageFilter< TInputImage, TConstant, TOutputImage >.
Definition at line 111 of file itkSubtractImageFilter.h.
typedef SubtractImageFilter itk::SubtractImageFilter< TInputImage1, TInputImage2, TOutputImage >::Self |
Standard class typedefs.
Reimplemented from itk::BinaryFunctorImageFilter< TInputImage1, TInputImage2, TOutputImage, Functor::Sub2< TInputImage1::PixelType, TInputImage2::PixelType, TOutputImage::PixelType > >.
Reimplemented in itk::SubtractConstantFromImageFilter< TInputImage, TConstant, TOutputImage >.
Definition at line 104 of file itkSubtractImageFilter.h.
typedef BinaryFunctorImageFilter< TInputImage1, TInputImage2, TOutputImage, Functor::Sub2< typename TInputImage1::PixelType, typename TInputImage2::PixelType, typename TOutputImage::PixelType > > itk::SubtractImageFilter< TInputImage1, TInputImage2, TOutputImage >::Superclass |
Reimplemented from itk::BinaryFunctorImageFilter< TInputImage1, TInputImage2, TOutputImage, Functor::Sub2< TInputImage1::PixelType, TInputImage2::PixelType, TOutputImage::PixelType > >.
Reimplemented in itk::SubtractConstantFromImageFilter< TInputImage, TConstant, TOutputImage >.
Definition at line 109 of file itkSubtractImageFilter.h.
itk::SubtractImageFilter< TInputImage1, TInputImage2, TOutputImage >::SubtractImageFilter | ( | ) | [inline, protected] |
End concept checking
Definition at line 131 of file itkSubtractImageFilter.h.
virtual itk::SubtractImageFilter< TInputImage1, TInputImage2, TOutputImage >::~SubtractImageFilter | ( | ) | [inline, protected, virtual] |
End concept checking
Definition at line 132 of file itkSubtractImageFilter.h.
itk::SubtractImageFilter< TInputImage1, TInputImage2, TOutputImage >::SubtractImageFilter | ( | const Self & | ) | [private] |
End concept checking
virtual::itk::LightObject::Pointer itk::SubtractImageFilter< 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::Sub2< TInputImage1::PixelType, TInputImage2::PixelType, TOutputImage::PixelType > >.
Reimplemented in itk::SubtractConstantFromImageFilter< TInputImage, TConstant, TOutputImage >.
virtual const char* itk::SubtractImageFilter< TInputImage1, TInputImage2, TOutputImage >::GetNameOfClass | ( | ) | const [virtual] |
Runtime information support.
Reimplemented from itk::BinaryFunctorImageFilter< TInputImage1, TInputImage2, TOutputImage, Functor::Sub2< TInputImage1::PixelType, TInputImage2::PixelType, TOutputImage::PixelType > >.
Reimplemented in itk::SubtractConstantFromImageFilter< TInputImage, TConstant, TOutputImage >.
static Pointer itk::SubtractImageFilter< TInputImage1, TInputImage2, TOutputImage >::New | ( | ) | [static] |
Method for creation through the object factory.
Reimplemented from itk::BinaryFunctorImageFilter< TInputImage1, TInputImage2, TOutputImage, Functor::Sub2< TInputImage1::PixelType, TInputImage2::PixelType, TOutputImage::PixelType > >.
Reimplemented in itk::SubtractConstantFromImageFilter< TInputImage, TConstant, TOutputImage >.
void itk::SubtractImageFilter< TInputImage1, TInputImage2, TOutputImage >::operator= | ( | const Self & | ) | [private] |
itk::SubtractImageFilter< TInputImage1, TInputImage2, TOutputImage >::typedef | ( | Concept::AdditiveOperators< typename TInputImage1::PixelType, typename TInputImage2::PixelType, typename TOutputImage::PixelType > | ) |
Begin concept checking This class requires Input1Input2OutputAdditiveOperatorsCheck in the form of ( Concept::AdditiveOperators< typename TInputImage1::PixelType, typename TInputImage2::PixelType, typename TOutputImage::PixelType > )