Uses of Class
org.apache.sis.image.Interpolation
Packages that use Interpolation
Package
Description
A coverage backed by a regular grid.
Widgets showing
GridCoverage
images or sample values.Provides helper classes for handling Java2D rendered images together with some operations.
-
Uses of Interpolation in org.apache.sis.coverage.grid
Methods in org.apache.sis.coverage.grid that return InterpolationModifier and TypeMethodDescriptionGridCoverageProcessor.getInterpolation()
Returns the interpolation method to use for resampling operations.Methods in org.apache.sis.coverage.grid with parameters of type InterpolationModifier and TypeMethodDescriptionvoid
GridCoverageProcessor.setInterpolation
(Interpolation method) Sets the interpolation method to use for resampling operations. -
Uses of Interpolation in org.apache.sis.gui.coverage
Fields in org.apache.sis.gui.coverage with type parameters of type InterpolationModifier and TypeFieldDescriptionfinal ObjectProperty<Interpolation>
CoverageCanvas.interpolationProperty
The interpolation method to use for resampling the image.Methods in org.apache.sis.gui.coverage that return InterpolationModifier and TypeMethodDescriptionfinal Interpolation
CoverageCanvas.getInterpolation()
Gets the interpolation method used during resample operations.Methods in org.apache.sis.gui.coverage with parameters of type InterpolationModifier and TypeMethodDescriptionfinal void
CoverageCanvas.setInterpolation
(Interpolation interpolation) Sets the interpolation method to use during resample operations. -
Uses of Interpolation in org.apache.sis.image
Fields in org.apache.sis.image declared as InterpolationModifier and TypeFieldDescriptionstatic final Interpolation
Interpolation.BILINEAR
A bilinear interpolation using 2×2 pixels.protected final Interpolation
ResampledImage.interpolation
The object to use for performing interpolations.static final Interpolation
Interpolation.LANCZOS
Lanczos interpolation for photographic images.static final Interpolation
Interpolation.NEAREST
A nearest-neighbor interpolation using 1×1 pixel.Methods in org.apache.sis.image that return InterpolationModifier and TypeMethodDescriptionImageCombiner.getInterpolation()
Returns the interpolation method to use during resample operations.ImageProcessor.getInterpolation()
Returns the interpolation method to use during resample operations.Methods in org.apache.sis.image with parameters of type InterpolationModifier and TypeMethodDescriptionvoid
ImageCombiner.setInterpolation
(Interpolation method) Sets the interpolation method to use during resample operations.void
ImageProcessor.setInterpolation
(Interpolation method) Sets the interpolation method to use during resample operations.Constructors in org.apache.sis.image with parameters of type InterpolationModifierConstructorDescriptionprotected
ResampledImage
(RenderedImage source, SampleModel sampleModel, Point minTile, Rectangle bounds, MathTransform toSource, Interpolation interpolation, Number[] fillValues, Quantity<?>[] accuracy) Creates a new image which will resample the given image.