public class BilinearRectangle_S16 extends java.lang.Object implements InterpolateRectangle<ImageSInt16>
Performs bilinear interpolation to extract values between pixels in an image. Image borders are detected and handled appropriately.
NOTE: This code was automatically generated using GenerateBilinearRectangle.
| Constructor and Description |
|---|
BilinearRectangle_S16() |
BilinearRectangle_S16(ImageSInt16 image) |
| Modifier and Type | Method and Description |
|---|---|
ImageSInt16 |
getImage()
Returns the image which is being interpolated.
|
void |
region(float tl_x,
float tl_y,
ImageFloat32 output)
Copies a grid from the source image starting at the specified coordinate
into the destination image.
|
void |
setImage(ImageSInt16 image)
Change the image that is being interpolated.
|
public BilinearRectangle_S16(ImageSInt16 image)
public BilinearRectangle_S16()
public void setImage(ImageSInt16 image)
InterpolateRectanglesetImage in interface InterpolateRectangle<ImageSInt16>image - An image.public ImageSInt16 getImage()
InterpolateRectanglegetImage in interface InterpolateRectangle<ImageSInt16>public void region(float tl_x,
float tl_y,
ImageFloat32 output)
InterpolateRectangleregion in interface InterpolateRectangle<ImageSInt16>tl_x - upper left corner of the region in the image.tl_y - upper left corner of the region in the image.output - Where the interpolated region is to be copied into