Class AbsoluteValueDifferenceImageFilter
java.lang.Object
org.itk.simple.ProcessObject
org.itk.simple.ImageFilter
org.itk.simple.AbsoluteValueDifferenceImageFilter
Implements pixel-wise the computation of absolute value difference.
This filter is parameterized over the types of the two input images
and the type of the output image.
Numeric conversions (castings) are done by the C++ defaults.
The filter will walk over all the pixels in the two input images, and
for each one of them it will do the following:
Cast the input 1 pixel value to double .
Cast the input 2 pixel value to double .
Compute the difference of the two pixel values.
Compute the absolute value of the difference.
Cast the double value resulting from the absolute value to the pixel
type of the output image.
Store the casted value into the output image.
 The filter expects all images to have the same dimension (e.g. all
2D, or all 3D, or all ND).
See:
 itk::simple::AbsoluteValueDifference for the procedural interface
 itk::AbsoluteValueDifferenceImageFilter for the Doxygen on the original ITK class.
C++ includes: sitkAbsoluteValueDifferenceImageFilter.h
- 
Field SummaryFields inherited from class org.itk.simple.ProcessObjectswigCMemOwn
- 
Constructor SummaryConstructorsModifierConstructorDescriptionitk::simple::AbsoluteValueDifferenceImageFilter::AbsoluteValueDifferenceImageFilter() Default Constructor that takes no arguments and initializes default parametersprotectedAbsoluteValueDifferenceImageFilter(long cPtr, boolean cMemoryOwn) 
- 
Method SummaryModifier and TypeMethodDescriptionvoiddelete()virtual itk::simple::AbsoluteValueDifferenceImageFilter::~AbsoluteValueDifferenceImageFilter() DestructorImage itk::simple::AbsoluteValueDifferenceImageFilter::Execute(Image &&image1, double constant)Image itk::simple::AbsoluteValueDifferenceImageFilter::Execute(Image &&image1, double constant)Image itk::simple::AbsoluteValueDifferenceImageFilter::Execute(Image &&image1, double constant)protected voidfinalize()protected static longgetName()std::string itk::simple::AbsoluteValueDifferenceImageFilter::GetName() const Name of this classprotected static longtoString()std::string itk::simple::AbsoluteValueDifferenceImageFilter::ToString() const Print ourselves outMethods inherited from class org.itk.simple.ImageFiltergetCPtr, swigReleaseMethods inherited from class org.itk.simple.ProcessObjectabort, addCommand, debugOff, debugOn, getCPtr, getDebug, getGlobalDefaultCoordinateTolerance, getGlobalDefaultDebug, getGlobalDefaultDirectionTolerance, getGlobalDefaultNumberOfThreads, getGlobalDefaultThreader, getGlobalWarningDisplay, getNumberOfThreads, getNumberOfWorkUnits, getProgress, globalDefaultDebugOff, globalDefaultDebugOn, globalWarningDisplayOff, globalWarningDisplayOn, hasCommand, removeAllCommands, setDebug, setGlobalDefaultCoordinateTolerance, setGlobalDefaultDebug, setGlobalDefaultDirectionTolerance, setGlobalDefaultNumberOfThreads, setGlobalDefaultThreader, setGlobalWarningDisplay, setNumberOfThreads, setNumberOfWorkUnits, swigRelease
- 
Constructor Details- 
AbsoluteValueDifferenceImageFilterprotected AbsoluteValueDifferenceImageFilter(long cPtr, boolean cMemoryOwn) 
- 
AbsoluteValueDifferenceImageFilterpublic AbsoluteValueDifferenceImageFilter()itk::simple::AbsoluteValueDifferenceImageFilter::AbsoluteValueDifferenceImageFilter() Default Constructor that takes no arguments and initializes default parameters
 
- 
- 
Method Details- 
getCPtr
- 
swigRelease
- 
finalizeprotected void finalize()- Overrides:
- finalizein class- ImageFilter
 
- 
deletepublic void delete()virtual itk::simple::AbsoluteValueDifferenceImageFilter::~AbsoluteValueDifferenceImageFilter() Destructor- Overrides:
- deletein class- ImageFilter
 
- 
getNamestd::string itk::simple::AbsoluteValueDifferenceImageFilter::GetName() const Name of this class- Overrides:
- getNamein class- ProcessObject
 
- 
toStringstd::string itk::simple::AbsoluteValueDifferenceImageFilter::ToString() const Print ourselves out- Overrides:
- toStringin class- ProcessObject
 
- 
execute
- 
execute
- 
execute
 
-