Package boofcv.alg.distort
Class NarrowPixelToSphere_F64
java.lang.Object
boofcv.alg.distort.NarrowPixelToSphere_F64
- All Implemented Interfaces:
Point2Transform3_F64
Given a transform from pixels to normalized image coordinate it will output unit sphere coordinates.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidcompute(double x, double y, Point3D_F64 out) Applies transformationCreates a copy of this transform for use in concurrent application.
-
Constructor Details
-
NarrowPixelToSphere_F64
-
-
Method Details
-
compute
Description copied from interface:Point2Transform3_F64Applies transformation- Specified by:
computein interfacePoint2Transform3_F64- Parameters:
x- x-coordinate of pointy- y-coordinate of pointout- Transformed point location.
-
copyConcurrent
Description copied from interface:Point2Transform3_F64Creates 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 toPoint2Transform3_F64.compute(double, double, georegression.struct.point.Point3D_F64)is not passed to the 'copied' output. Expensive to compute models might be passed in as a reference.- Specified by:
copyConcurrentin interfacePoint2Transform3_F64
-