Package boofcv.alg.distort
Class PixelTransformAffine_F32
java.lang.Object
boofcv.alg.distort.PixelTransformAffine_F32
- All Implemented Interfaces:
PixelTransform<Point2D_F32>
@Generated("boofcv.alg.distort.PixelTransformAffine_F64")
public class PixelTransformAffine_F32
extends Object
implements PixelTransform<Point2D_F32>
Distorts pixels using
Affine2D_F32
.-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
compute
(int x, int y, Point2D_F32 output) applies a transform to a pixel coordinateCreates a copy of this transform for use in concurrent application.void
setTo
(Affine2D_F32 affine)
-
Field Details
-
model
-
-
Constructor Details
-
PixelTransformAffine_F32
public PixelTransformAffine_F32() -
PixelTransformAffine_F32
-
-
Method Details
-
setTo
-
compute
Description copied from interface:PixelTransform
applies a transform to a pixel coordinate- Specified by:
compute
in interfacePixelTransform<Point2D_F32>
- Parameters:
x
- Pixel x-coordinatey
- Pixel y-coordinateoutput
- The transformed pixel
-
copyConcurrent
Description copied from interface:PixelTransform
Creates a copy of this transform for use in concurrent application. What that means is that any variable which might be modified by a concurrent call toPixelTransform.compute(int, int, T)
is not passed to the 'copied' output. Expensive to compute models might be passed in as a reference.- Specified by:
copyConcurrent
in interfacePixelTransform<Point2D_F32>
-