public interface InterpolatePixelS<T extends ImageSingleBand> extends InterpolatePixel<T>
| Modifier and Type | Method and Description |
|---|---|
float |
get_fast(float x,
float y)
Returns the interpolated pixel value at the specified location while assuming it is inside
the image far away from the border.
|
float |
get(float x,
float y)
Returns the interpolated pixel value at the specified location while checking to see if
border conditions apply.
|
getBorder, getFastBorderX, getFastBorderY, getImage, getImageType, isInFastBounds, setBorder, setImagefloat get(float x,
float y)
x - Point's x-coordinate. x >= 0 && x < image.width or all values if border specifiedy - Point's y-coordinate. y >= 0 && y < image.height or all values if border specifiedfloat get_fast(float x,
float y)
InterpolatePixel.isInFastBounds(float, float) should return true.x - Point's x-coordinate.y - Point's y-coordinate.