Class NoiseImageFilter


public class NoiseImageFilter extends ImageFilter
Calculate the local noise in an image. Computes an image where a given pixel is the standard deviation of the pixels in a neighborhood about the corresponding input pixel. This serves as an estimate of the local noise (or texture) in an image. Currently, this noise estimate assume a piecewise constant image. This filter should be extended to fitting a (hyper) plane to the neighborhood and calculating the standard deviation of the residuals to this (hyper) plane. See: Image Neighborhood NeighborhoodOperator NeighborhoodIterator itk::simple::Noise for the procedural interface itk::NoiseImageFilter for the Doxygen on the original ITK class. C++ includes: sitkNoiseImageFilter.h
  • Constructor Details

    • NoiseImageFilter

      protected NoiseImageFilter(long cPtr, boolean cMemoryOwn)
    • NoiseImageFilter

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

    • getCPtr

      protected static long getCPtr(NoiseImageFilter obj)
    • swigRelease

      protected static long swigRelease(NoiseImageFilter obj)
    • finalize

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

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

      public void setRadius(VectorUInt32 Radius)
      Self& itk::simple::NoiseImageFilter::SetRadius(unsigned int value) Set the values of the Radius vector all to value
    • setRadius

      public void setRadius(long value)
      Self& itk::simple::NoiseImageFilter::SetRadius(unsigned int value) Set the values of the Radius vector all to value
    • getRadius

      public VectorUInt32 getRadius()
      std::vector<unsigned int> itk::simple::NoiseImageFilter::GetRadius() const
    • getName

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

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

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