Class Interpolation

java.lang.Object
org.apache.sis.image.Interpolation

public abstract class Interpolation extends Object
Algorithm for image interpolation (resampling). Interpolations are performed by sampling on a regular grid of pixels using a local neighborhood. The sampling is performed by the ResampledImage class, which gives the sample values to the interpolate(…) method of this interpolation.

All methods in this class shall be safe for concurrent use in multi-threading context. For example, interpolations may be executed in a different thread for each tile in an image.

This class is designed for interpolations in a two-dimensional space only.

Since:
1.1
Version:
1.2
Author:
Rémi Marechal (Geomatys), Martin Desruisseaux (Geomatys), Johann Sorel (Geomatys)
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final Interpolation
    A bilinear interpolation using 2×2 pixels.
    static final Interpolation
    Lanczos interpolation for photographic images.
    static final Interpolation
    A nearest-neighbor interpolation using 1×1 pixel.
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
    protected
    Creates a new interpolation.
  • Method Summary

    Modifier and Type
    Method
    Description
    abstract Dimension
    Returns the size of the area over which the resampling function needs to provide values.
    abstract void
    interpolate(DoubleBuffer source, int numBands, double xfrac, double yfrac, double[] writeTo, int writeToOffset)
    Interpolates sample values for all bands using the given pixel values in local neighborhood.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • NEAREST

      public static final Interpolation NEAREST
      A nearest-neighbor interpolation using 1×1 pixel.
    • BILINEAR

      public static final Interpolation BILINEAR
      A bilinear interpolation using 2×2 pixels. If the interpolation result is NaN, this method fallbacks on nearest-neighbor.
    • LANCZOS

      public static final Interpolation LANCZOS
      Lanczos interpolation for photographic images. This interpolation is not recommended for images that may contain NaN values.
      See Also:
  • Constructor Details

    • Interpolation

      protected Interpolation()
      Creates a new interpolation.
  • Method Details

    • getSupportSize

      public abstract Dimension getSupportSize()
      Returns the size of the area over which the resampling function needs to provide values. Common values are:
      Common support sizes
      Interpolation Width Height
      Nearest-neighbor 1 1
      Bilinear 2 2
      Bicubic 4 4
      Lanczos 4 4
      Returns:
      number of sample values required for interpolations.
    • interpolate

      public abstract void interpolate(DoubleBuffer source, int numBands, double xfrac, double yfrac, double[] writeTo, int writeToOffset)
      Interpolates sample values for all bands using the given pixel values in local neighborhood. The given source is a buffer with the number of elements shown below, where support width and support height are given by getSupportSize():
      (number of bands) × (support width) × (support height)
      Values in source buffer are always given with band index varying fastest, then column index, then row index. Columns are traversed from left to right and rows are traversed from top to bottom (SequenceType.LINEAR iteration order).

      The interpolation point is in the middle. For example if the support size is 4×4 pixels, then the interpolation point is the dot below and the fractional coordinates are relative to the horizontal and vertical lines drawn below. This figure is for an image with only one band, otherwise all indices between brackets would need to be multiplied by numBands.

      On output, this method shall write the interpolation results as numBands consecutive values in the supplied writeTo array, starting at writeToOffset index. This method should not modify the buffer position (use Buffer.mark() and reset() if needed).
      Parameters:
      source - pixel values from the source image to use for interpolation.
      numBands - number of bands. This is the number of values to put in the writeTo array.
      xfrac - the X subsample position, usually (but not always) in the range [0 … 1).
      yfrac - the Y subsample position, usually (but not always) in the range [0 … 1).
      writeTo - the array where this method shall write interpolated values.
      writeToOffset - index of the first value to put in the writeTo array.