Package boofcv.alg.interpolate.impl
Class ImplBilinearPixel_IL_F32
java.lang.Object
boofcv.alg.interpolate.BilinearPixelMB<InterleavedF32>
boofcv.alg.interpolate.impl.ImplBilinearPixel_IL_F32
- All Implemented Interfaces:
InterpolatePixel<InterleavedF32>,InterpolatePixelMB<InterleavedF32>
@Generated("boofcv.alg.interpolate.impl.GenerateImplBilinearPixel_IL")
public class ImplBilinearPixel_IL_F32
extends BilinearPixelMB<InterleavedF32>
Implementation of BilinearPixelMB for a specific image type.
DO NOT MODIFY. Automatically generated code created by GenerateImplBilinearPixel_IL
-
Field Summary
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncopy()Creates a new instance of this interpolation methodvoidget(float x, float y, float[] values) Returns the interpolated pixel values at the specified location while taking in account the image border.voidget_border(float x, float y, float[] values) voidget_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.Type of image it can processvoidsetImage(InterleavedF32 image) Change the image that is being interpolated.Methods inherited from class boofcv.alg.interpolate.BilinearPixelMB
getBorder, getFastBorderX, getFastBorderY, getImage, isInFastBounds, setBorder
-
Constructor Details
-
ImplBilinearPixel_IL_F32
public ImplBilinearPixel_IL_F32(int numBands) -
ImplBilinearPixel_IL_F32
-
-
Method Details
-
setImage
Description copied from interface:InterpolatePixelChange the image that is being interpolated.- Specified by:
setImagein interfaceInterpolatePixel<InterleavedF32>- Overrides:
setImagein classBilinearPixelMB<InterleavedF32>- Parameters:
image- An image.
-
get_fast
public void get_fast(float x, float y, float[] values) Description copied from interface:InterpolatePixelMBReturns 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.
-
get_border
public void get_border(float x, float y, float[] values) -
get
public void get(float x, float y, float[] values) Description copied from interface:InterpolatePixelMBReturns 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.
-
copy
Description copied from interface:InterpolatePixelMBCreates a new instance of this interpolation method -
getImageType
Description copied from interface:InterpolatePixelType of image it can process
-