Class LanczosInterpolatorFactory<T extends RealType<T>>

    • Constructor Detail

      • 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)