Package boofcv.alg.distort
Class SphereToNarrowPixel_F64
java.lang.Object
boofcv.alg.distort.SphereToNarrowPixel_F64
- All Implemented Interfaces:
Point3Transform2_F64
Converts a spherical coordinate into a pixel coordinate.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
compute
(double x, double y, double z, Point2D_F64 out) Applies transformationCreates a copy of this transform for use in concurrent application.
-
Constructor Details
-
SphereToNarrowPixel_F64
-
-
Method Details
-
compute
Description copied from interface:Point3Transform2_F64
Applies transformation- Specified by:
compute
in interfacePoint3Transform2_F64
- Parameters:
x
- x-coordinate of pointy
- y-coordinate of pointz
- y-coordinate of pointout
- Transformed point location.
-
copyConcurrent
Description copied from interface:Point3Transform2_F64
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_F64.compute(double, double, double, georegression.struct.point.Point2D_F64)
is not passed to the 'copied' output. Expensive to compute models might be passed in as a reference.- Specified by:
copyConcurrent
in interfacePoint3Transform2_F64
-