Class AsinImageFilter


public class AsinImageFilter extends ImageFilter
Computes the sine 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 the following: cast the pixel value to double , apply the std::asin() function to the double value, cast the double value resulting from std::asin() 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::Asin for the procedural interface itk::AsinImageFilter for the Doxygen on the original ITK class. C++ includes: sitkAsinImageFilter.h
  • Constructor Details

    • AsinImageFilter

      protected AsinImageFilter(long cPtr, boolean cMemoryOwn)
    • AsinImageFilter

      public AsinImageFilter()
      itk::simple::AsinImageFilter::AsinImageFilter() Default Constructor that takes no arguments and initializes default parameters
  • Method Details

    • getCPtr

      protected static long getCPtr(AsinImageFilter obj)
    • swigRelease

      protected static long swigRelease(AsinImageFilter obj)
    • finalize

      protected void finalize()
      Overrides:
      finalize in class ImageFilter
    • delete

      public void delete()
      virtual itk::simple::AsinImageFilter::~AsinImageFilter() Destructor
      Overrides:
      delete in class ImageFilter
    • getName

      public String getName()
      std::string itk::simple::AsinImageFilter::GetName() const Name of this class
      Overrides:
      getName in class ProcessObject
    • toString

      public String toString()
      std::string itk::simple::AsinImageFilter::ToString() const Print ourselves out
      Overrides:
      toString in class ProcessObject
    • execute

      public Image execute(Image image1)
      Image itk::simple::AsinImageFilter::Execute(Image &&image1) Execute the filter on the input image