Class Atan2ImageFilter


public class Atan2ImageFilter extends ImageFilter
Computes two argument inverse tangent. The first argument to the atan function is provided by a pixel in the first input image (SetInput1() ) and the corresponding pixel in the second input image (SetInput2() ) is used as the second argument. 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. Both pixel input types are cast to double in order to be used as parameters of std::atan2() . The resulting double value is cast to the output pixel type. See: itk::simple::Atan2 for the procedural interface itk::Atan2ImageFilter for the Doxygen on the original ITK class. C++ includes: sitkAtan2ImageFilter.h
  • Constructor Details

    • Atan2ImageFilter

      protected Atan2ImageFilter(long cPtr, boolean cMemoryOwn)
    • Atan2ImageFilter

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

    • getCPtr

      protected static long getCPtr(Atan2ImageFilter obj)
    • swigRelease

      protected static long swigRelease(Atan2ImageFilter obj)
    • finalize

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

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

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

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

      public Image execute(Image image1, Image image2)
      Image itk::simple::Atan2ImageFilter::Execute(Image &&image1, double constant)
    • execute

      public Image execute(Image image1, double constant)
      Image itk::simple::Atan2ImageFilter::Execute(Image &&image1, double constant)
    • execute

      public Image execute(double constant, Image image2)
      Image itk::simple::Atan2ImageFilter::Execute(Image &&image1, double constant)