Basics
Guides
API Reference
Basics
Guides
API Reference
[88:7] extends: object
InterpolatePixelS wraps boofcv.alg.interpolate.InterpolatePixelS.
InterpolatePixelS (object Obj)
Wraps a BoofCV InterpolatePixelS object.
Obj is an existing interpolator Java object or wrapper.setImage (object Image)
Sets the source image.
Image is a gray image wrapper or compatible Java object.getImage ()
Gets the source image.
The source image Java object.get (X, Y)
Interpolates a value.
X is the x coordinate.Y is the y coordinate.The interpolated value.get_fast (X, Y)
Interpolates a value inside the fast image bounds.
X is the x coordinate.Y is the y coordinate.The interpolated value.getBorder ()
Gets the border object.
The border Java object.setBorder (object Border)
Sets the border object.
Border is an ImageBorder Java object or wrapper.getImageType ()
Gets the interpolator image type.
An ImageType Java object.[139:7] extends: object
InterpolatePixelMB wraps boofcv.alg.interpolate.InterpolatePixelMB.
InterpolatePixelMB (object Obj)
Wraps a BoofCV InterpolatePixelMB object.
Obj is an existing interpolator Java object or wrapper.setImage (object Image)
Sets the source image.
Image is a multi-band image wrapper or compatible Java object.getImage ()
Gets the source image.
The source image Java object.getBorder ()
Gets the border object.
The border Java object.setBorder (object Border)
Sets the border object.
Border is an ImageBorder Java object or wrapper.getImageType ()
Gets the interpolator image type.
An ImageType Java object.[6:14] static extends: object
Static wrappers for the boofcv.alg.interpolate.InterpolationType enum.
valueOf (string Name)
Returns a BoofCV InterpolationType enum by name.
Name is NEAREST_NEIGHBOR, BILINEAR, BICUBIC, or POLYNOMIAL4.An InterpolationType Java object.[18:14] static extends: object
Static wrappers for boofcv.factory.interpolate.FactoryInterpolation.
nearestNeighborPixelS (string ImageClassName)
Creates a nearest-neighbor single-band interpolator.
ImageClassName is a full gray image class name or supported short image name.An InterpolatePixelS wrapper.bilinearPixelS (string ImageClassName, string BorderTypeName = "EXTENDED")
Creates a bilinear single-band interpolator.
ImageClassName is a full gray image class name or supported short image name.BorderTypeName is SKIP, EXTENDED, NORMALIZED, REFLECT, WRAP, or ZERO.An InterpolatePixelS wrapper.bicubicS (Alpha, Min, Max, string ImageClassName)
Creates a bicubic single-band interpolator.
Alpha is the bicubic alpha parameter, commonly -0.5.Min is the minimum pixel value.Max is the maximum pixel value.ImageClassName is a full gray image class name or supported short image name.An InterpolatePixelS wrapper.polynomialS (int MaxDegree, Min, Max, string ImageClassName)
Creates a polynomial single-band interpolator.
MaxDegree is the polynomial degree.Min is the minimum value.Max is the maximum value.ImageClassName is a full gray image class name or supported short image name.An InterpolatePixelS wrapper.createPixelMB (MinValue, MaxValue, string TypeName, string BorderTypeName, object ImageTypeValue)
Creates a multi-band interpolator.
MinValue is the minimum value.MaxValue is the maximum value.TypeName is NEAREST_NEIGHBOR, BILINEAR, BICUBIC, or POLYNOMIAL4.BorderTypeName is SKIP, EXTENDED, NORMALIZED, REFLECT, WRAP, or ZERO.ImageTypeValue is an ImageType wrapper or Java object.An InterpolatePixelMB wrapper.
Aussom
Write once. Embed everywhere.
Copyright 2026 Austin Lehman. All rights reserved.