Package boofcv.alg.distort.pinhole
Class PixelTransformPinholeNorm_F64
java.lang.Object
boofcv.alg.distort.pinhole.PixelTransformPinholeNorm_F64
- All Implemented Interfaces:
PixelTransform<Point2D_F64>
Converts an image pixel coordinate into a normalized pixel coordinate using the
camera's intrinsic parameters. Lens distortion must have already been removed.
-
Constructor Summary
ConstructorDescription -
Method Summary
Modifier and TypeMethodDescriptionvoid
compute
(int x, int y, Point2D_F64 out) applies a transform to a pixel coordinateCreates a copy of this transform for use in concurrent application.fset
(double fx, double fy, double skew, double cx, double cy) fset
(CameraPinhole pinhole)
-
Constructor Details
-
PixelTransformPinholeNorm_F64
-
PixelTransformPinholeNorm_F64
public PixelTransformPinholeNorm_F64()
-
-
Method Details
-
fset
-
fset
-
compute
Description copied from interface:PixelTransform
applies a transform to a pixel coordinate- Specified by:
compute
in interfacePixelTransform<Point2D_F64>
- Parameters:
x
- Pixel x-coordinatey
- Pixel y-coordinateout
- 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_F64>
-