Package boofcv.alg.distort.spherical
Class CameraToEquirectangular_F64
java.lang.Object
boofcv.alg.distort.spherical.EquirectangularDistortBase_F64
boofcv.alg.distort.spherical.CameraToEquirectangular_F64
- All Implemented Interfaces:
PixelTransform<Point2D_F64>
Given a transform from a pixel to normalized image coordinates or spherical it will define an equirectangular
transform.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionCreates a copy of this transform for use in concurrent application.void
setCameraModel
(int width, int height, Point2Transform2_F64 pixelToNormalized) void
setCameraModel
(int width, int height, Point2Transform3_F64 pixelToNSpherical) void
setCameraModel
(CameraPinhole camera) void
setCameraModel
(CameraPinholeBrown camera) void
setCameraModel
(CameraUniversalOmni camera) Methods inherited from class boofcv.alg.distort.spherical.EquirectangularDistortBase_F64
compute, declareVectors, getRotation, getTools, setConcurrent, setDirection, setDirection, setEquirectangularShape
-
Constructor Details
-
CameraToEquirectangular_F64
public CameraToEquirectangular_F64()
-
-
Method Details
-
setCameraModel
-
setCameraModel
-
setCameraModel
-
setCameraModel
-
setCameraModel
-
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.
-