Package boofcv.alg.interpolate.impl
Class NearestNeighborPixel_IL_S32
java.lang.Object
boofcv.alg.interpolate.NearestNeighborPixelMB<InterleavedS32>
boofcv.alg.interpolate.impl.NearestNeighborPixel_IL_S32
- All Implemented Interfaces:
InterpolatePixel<InterleavedS32>
,InterpolatePixelMB<InterleavedS32>
@Generated("boofcv.alg.interpolate.impl.GenerateNearestNeighborPixel_IL")
public class NearestNeighborPixel_IL_S32
extends NearestNeighborPixelMB<InterleavedS32>
Performs nearest neighbor interpolation to extract values between pixels in an image.
DO NOT MODIFY. Automatically generated code created by GenerateNearestNeighborPixel_IL
-
Field Summary
-
Constructor Summary
ConstructorDescription -
Method Summary
Modifier and TypeMethodDescriptioncopy()
Creates a new instance of this interpolation methodvoid
get
(float x, float y, float[] values) Returns the interpolated pixel values at the specified location while taking in account the image border.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
setImage
(InterleavedS32 image) Change the image that is being interpolated.Methods inherited from class boofcv.alg.interpolate.NearestNeighborPixelMB
getBorder, getFastBorderX, getFastBorderY, getImage, getImageType, isInFastBounds, setBorder
-
Constructor Details
-
NearestNeighborPixel_IL_S32
public NearestNeighborPixel_IL_S32() -
NearestNeighborPixel_IL_S32
-
-
Method Details
-
setImage
Description copied from interface:InterpolatePixel
Change the image that is being interpolated.- Specified by:
setImage
in interfaceInterpolatePixel<InterleavedS32>
- Overrides:
setImage
in classNearestNeighborPixelMB<InterleavedS32>
- Parameters:
image
- An image.
-
get
public void get(float x, float y, float[] values) Description copied from interface:InterpolatePixelMB
Returns the interpolated pixel values at the specified location while taking in account the image border. Bounds checking is done to ensure that the coordinate is inside the image and to see if the interpolation technique needs to be adjusted for the image border.- Parameters:
x
- Point's x-coordinate. x ≥ 0 && x < image.widthy
- Point's y-coordinate. y ≥ 0 && y < image.heightvalues
- Interpolated value across all bands.
-
get_fast
public void get_fast(float x, float y, float[] values) Description copied from interface:InterpolatePixelMB
Returns the interpolated pixel values at the specified location while assuming it is inside the image far away from the border. For any input pointInterpolatePixel.isInFastBounds(float, float)
should return true.- Parameters:
x
- Point's x-coordinate.y
- Point's y-coordinate.values
- Interpolated value across all bands.
-
copy
Description copied from interface:InterpolatePixelMB
Creates a new instance of this interpolation method
-