Uses of Interface
org.apache.sis.image.Interpolation
Packages that use Interpolation
Package
Description
A coverage backed by a regular grid.
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 TypeMethodDescriptionvoidGridCoverageProcessor.setInterpolation(Interpolation method) Sets the interpolation method to use for resampling operations. -
Uses of Interpolation in org.apache.sis.image
Fields in org.apache.sis.image declared as InterpolationModifier and TypeFieldDescriptionstatic final InterpolationInterpolation.BILINEARA bilinear interpolation using 2×2 pixels.protected final InterpolationResampledImage.interpolationThe object to use for performing interpolations.static final InterpolationInterpolation.LANCZOSLanczos interpolation for photographic images.static final InterpolationInterpolation.NEARESTA 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 TypeMethodDescriptionvoidImageCombiner.setInterpolation(Interpolation method) Sets the interpolation method to use during resample operations.voidImageProcessor.setInterpolation(Interpolation method) Sets the interpolation method to use during resample operations.Constructors in org.apache.sis.image with parameters of type InterpolationModifierConstructorDescriptionprotectedResampledImage(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.