Class BinaryNotImageFilter
java.lang.Object
org.itk.simple.ProcessObject
org.itk.simple.ImageFilter
org.itk.simple.BinaryNotImageFilter
Implements the BinaryNot logical operator pixel-wise between two
images.
This class 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 total operation over one pixel will be
output_pixel = static_cast<PixelType>( input1_pixel !=
input2_pixel )
Where "!=" is the equality operator in C++.
Gaetan Lehmann. Biologie du Developpement et de la Reproduction, INRA
de Jouy-en-Josas, France.
 This implementation was taken from the Insight Journal paper: https://doi.org/10.54294/q6auw4
See:
 itk::simple::BinaryNot for the procedural interface
 itk::BinaryNotImageFilter for the Doxygen on the original ITK class.
C++ includes: sitkBinaryNotImageFilter.h
- 
Field SummaryFields inherited from class org.itk.simple.ProcessObjectswigCMemOwn
- 
Constructor SummaryConstructorsModifierConstructorDescriptionitk::simple::BinaryNotImageFilter::BinaryNotImageFilter() Default Constructor that takes no arguments and initializes default parametersprotectedBinaryNotImageFilter(long cPtr, boolean cMemoryOwn) 
- 
Method SummaryModifier and TypeMethodDescriptionvoiddelete()virtual itk::simple::BinaryNotImageFilter::~BinaryNotImageFilter() DestructorImage itk::simple::BinaryNotImageFilter::Execute(Image &&image1) Execute the filter on the input imageprotected voidfinalize()doubledouble itk::simple::BinaryNotImageFilter::GetBackgroundValue() const Set/Get the value used as "background".protected static longdoubledouble itk::simple::BinaryNotImageFilter::GetForegroundValue() const Set/Get the value in the image considered as "foreground".getName()std::string itk::simple::BinaryNotImageFilter::GetName() const Name of this classvoidsetBackgroundValue(double BackgroundValue) Self& itk::simple::BinaryNotImageFilter::SetBackgroundValue(double BackgroundValue) Set/Get the value used as "background".voidsetForegroundValue(double ForegroundValue) Self& itk::simple::BinaryNotImageFilter::SetForegroundValue(double ForegroundValue) Set/Get the value in the image considered as "foreground".protected static longtoString()std::string itk::simple::BinaryNotImageFilter::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- 
BinaryNotImageFilterprotected BinaryNotImageFilter(long cPtr, boolean cMemoryOwn) 
- 
BinaryNotImageFilterpublic BinaryNotImageFilter()itk::simple::BinaryNotImageFilter::BinaryNotImageFilter() 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::BinaryNotImageFilter::~BinaryNotImageFilter() Destructor- Overrides:
- deletein class- ImageFilter
 
- 
setForegroundValuepublic void setForegroundValue(double ForegroundValue) Self& itk::simple::BinaryNotImageFilter::SetForegroundValue(double ForegroundValue) Set/Get the value in the image considered as "foreground". Defaults to maximum value of PixelType.
- 
getForegroundValuepublic double getForegroundValue()double itk::simple::BinaryNotImageFilter::GetForegroundValue() const Set/Get the value in the image considered as "foreground". Defaults to maximum value of PixelType.
- 
setBackgroundValuepublic void setBackgroundValue(double BackgroundValue) Self& itk::simple::BinaryNotImageFilter::SetBackgroundValue(double BackgroundValue) Set/Get the value used as "background". Defaults to NumericTraits<PixelType>::NonpositiveMin() .
- 
getBackgroundValuepublic double getBackgroundValue()double itk::simple::BinaryNotImageFilter::GetBackgroundValue() const Set/Get the value used as "background". Defaults to NumericTraits<PixelType>::NonpositiveMin() .
- 
getNamestd::string itk::simple::BinaryNotImageFilter::GetName() const Name of this class- Overrides:
- getNamein class- ProcessObject
 
- 
toStringstd::string itk::simple::BinaryNotImageFilter::ToString() const Print ourselves out- Overrides:
- toStringin class- ProcessObject
 
- 
execute
 
-