Package boofcv.alg.distort.spherical
Class EquirectangularRotate_F64
java.lang.Object
boofcv.alg.distort.spherical.EquirectangularDistortBase_F64
boofcv.alg.distort.spherical.EquirectangularRotate_F64
- All Implemented Interfaces:
PixelTransform<Point2D_F64>
Transforms the equirectangular image as if the input image was taken by the camera at the same location but with
a rotation. Includes a built in function to center the camera at a particular location to minimize the distortion.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionCreates a copy of this transform for use in concurrent application.void
setEquirectangularShape
(int width, int height) Specifies the image's width and heightMethods inherited from class boofcv.alg.distort.spherical.EquirectangularDistortBase_F64
compute, declareVectors, getRotation, getTools, setConcurrent, setDirection, setDirection
-
Constructor Details
-
EquirectangularRotate_F64
public EquirectangularRotate_F64()
-
-
Method Details
-
setEquirectangularShape
public void setEquirectangularShape(int width, int height) Specifies the image's width and height- Overrides:
setEquirectangularShape
in classEquirectangularDistortBase_F64
- Parameters:
width
- Image widthheight
- Image height
-
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.
-