Class AcosImageFilter
java.lang.Object
org.itk.simple.ProcessObject
org.itk.simple.ImageFilter
org.itk.simple.AcosImageFilter
Computes the inverse cosine of each pixel.
This filter is templated over the pixel type of the input image and
the pixel type of the output image.
The filter walks over all the pixels in the input image, and for each
pixel does do the following:
cast the pixel value to double ,
apply the std::acos() function to the double value
cast the double value resulting from std::acos() to the pixel type of
the output image
store the casted value into the output image.
 The filter expects both images to have the same dimension (e.g. both
2D, or both 3D, or both ND).
See:
 itk::simple::Acos for the procedural interface
 itk::AcosImageFilter for the Doxygen on the original ITK class.
C++ includes: sitkAcosImageFilter.h
- 
Field SummaryFields inherited from class org.itk.simple.ProcessObjectswigCMemOwn
- 
Constructor SummaryConstructorsModifierConstructorDescriptionitk::simple::AcosImageFilter::AcosImageFilter() Default Constructor that takes no arguments and initializes default parametersprotectedAcosImageFilter(long cPtr, boolean cMemoryOwn) 
- 
Method SummaryModifier and TypeMethodDescriptionvoiddelete()virtual itk::simple::AcosImageFilter::~AcosImageFilter() DestructorImage itk::simple::AcosImageFilter::Execute(Image &&image1) Execute the filter on the input imageprotected voidfinalize()protected static longgetCPtr(AcosImageFilter obj) getName()std::string itk::simple::AcosImageFilter::GetName() const Name of this classprotected static longtoString()std::string itk::simple::AcosImageFilter::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- 
AcosImageFilterprotected AcosImageFilter(long cPtr, boolean cMemoryOwn) 
- 
AcosImageFilterpublic AcosImageFilter()itk::simple::AcosImageFilter::AcosImageFilter() 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::AcosImageFilter::~AcosImageFilter() Destructor- Overrides:
- deletein class- ImageFilter
 
- 
getNamestd::string itk::simple::AcosImageFilter::GetName() const Name of this class- Overrides:
- getNamein class- ProcessObject
 
- 
toStringstd::string itk::simple::AcosImageFilter::ToString() const Print ourselves out- Overrides:
- toStringin class- ProcessObject
 
- 
execute
 
-