Class LanczosInterpolatorFactory<T extends RealType<T>>

java.lang.Object
net.imglib2.interpolation.randomaccess.LanczosInterpolatorFactory<T>
All Implemented Interfaces:
InterpolatorFactory<T,RandomAccessible<T>>

public class LanczosInterpolatorFactory<T extends RealType<T>> extends Object implements InterpolatorFactory<T,RandomAccessible<T>>
TODO
  • Constructor Details

    • LanczosInterpolatorFactory

      public LanczosInterpolatorFactory(int alpha, boolean clipping)
      Creates a new LanczosInterpolatorFactory using the Lanczos (sinc) interpolation in a certain window
      Parameters:
      alpha - the rectangular radius of the window for perfoming the lanczos interpolation
      clipping - the lanczos-interpolation can create values that are bigger or smaller than the original values, so they can be clipped to the range of the Type if wanted
    • LanczosInterpolatorFactory

      public LanczosInterpolatorFactory(int alpha, double min, double max)
      Creates a new LanczosInterpolatorFactory using the Lanczos (sinc) interpolation in a certain window
      Parameters:
      alpha - the rectangular radius of the window for perfoming the lanczos interpolation
      min - the lanczos-interpolation can create values that are bigger or smaller than the original values, so they can be clipped to the range of the if wanted
      max - the lanczos-interpolation can create values that are bigger or smaller than the original values, so they can be clipped to the range of the if wanted
    • LanczosInterpolatorFactory

      public LanczosInterpolatorFactory(double min, double max)
      Creates a new LanczosInterpolatorFactory using the Lanczos (sinc) interpolation in a certain window
      Parameters:
      min - the lanczos-interpolation can create values that are bigger or smaller than the original values, so they can be clipped to the range of the if wanted
      max - the lanczos-interpolation can create values that are bigger or smaller than the original values, so they can be clipped to the range of the if wanted
    • LanczosInterpolatorFactory

      public LanczosInterpolatorFactory()
      Creates a new LanczosInterpolatorFactory with standard parameters (do clipping, alpha=3)
  • Method Details