Package boofcv.alg.distort.kanbra
Class KannalaBrandtStoP_F32
java.lang.Object
boofcv.alg.distort.kanbra.KannalaBrandtStoP_F32
- All Implemented Interfaces:
Point3Transform2_F32
@Generated("boofcv.alg.distort.kanbra.KannalaBrandtStoP_F64")
public class KannalaBrandtStoP_F32
extends Object
implements Point3Transform2_F32
Forward projection model for
CameraKannalaBrandt
. Takes a 3D point in camera unit sphere
coordinates and converts it into a distorted pixel coordinate. There are no checks to see if
it is physically possible to perform the forward projection, e.g. point could be outside the FOV.-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
compute
(float x, float y, float z, Point2D_F32 out) Applies transformationCreates a copy of this transform for use in concurrent application.
-
Field Details
-
model
-
-
Constructor Details
-
KannalaBrandtStoP_F32
-
-
Method Details
-
compute
Description copied from interface:Point3Transform2_F32
Applies transformation- Specified by:
compute
in interfacePoint3Transform2_F32
- Parameters:
x
- x-coordinate of pointy
- y-coordinate of pointz
- y-coordinate of pointout
- Transformed point location.
-
copyConcurrent
Description copied from interface:Point3Transform2_F32
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 toPoint3Transform2_F32.compute(float, float, float, georegression.struct.point.Point2D_F32)
is not passed to the 'copied' output. Expensive to compute models might be passed in as a reference.- Specified by:
copyConcurrent
in interfacePoint3Transform2_F32
-