public interface InterpolatePixelMB<T extends ImageBase> extends InterpolatePixel<T>
| Modifier and Type | Method and Description |
|---|---|
void |
get_fast(float x,
float y,
float[] values)
Returns the interpolated pixel values at the specified location while assuming it is inside
the image far away from the border.
|
void |
get(float x,
float y,
float[] values)
Returns the interpolated pixel values at the specified location while taking in account
the image border.
|
getBorder, getFastBorderX, getFastBorderY, getImage, getImageType, isInFastBounds, setBorder, setImagevoid get(float x,
float y,
float[] values)
x - Point's x-coordinate. x ≥ 0 && x < image.widthy - Point's y-coordinate. y ≥ 0 && y < image.heightvalues - Interpolated value across all bands.void get_fast(float x,
float y,
float[] values)
InterpolatePixel.isInFastBounds(float, float) should return true.x - Point's x-coordinate.y - Point's y-coordinate.values - Interpolated value across all bands.