Package boofcv.struct.distort
Interface Point3Transform2_F32
- All Known Implementing Classes:
KannalaBrandtStoP_F32,SphereToNarrowPixel_F32,UniOmniStoP_F32
@Generated("boofcv.struct.distort.Point3Transform2_F64")
public interface Point3Transform2_F32
Applies a transform of a 3D point into a 2D point.
-
Method Summary
Modifier and TypeMethodDescriptionvoidcompute(float x, float y, float z, Point2D_F32 out) Applies transformationCreates a copy of this transform for use in concurrent application.
-
Method Details
-
compute
Applies transformation- Parameters:
x- x-coordinate of pointy- y-coordinate of pointz- y-coordinate of pointout- Transformed point location.
-
copyConcurrent
Point3Transform2_F32 copyConcurrent()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 tocompute(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.
-