Package boofcv.alg.distort.spherical
Class EquirectangularRotate_F32
java.lang.Object
boofcv.alg.distort.spherical.EquirectangularDistortBase_F32
boofcv.alg.distort.spherical.EquirectangularRotate_F32
- All Implemented Interfaces:
PixelTransform<Point2D_F32>
@Generated("boofcv.alg.distort.spherical.EquirectangularRotate_F64")
public class EquirectangularRotate_F32
extends EquirectangularDistortBase_F32
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_F32
compute, declareVectors, getRotation, getTools, setConcurrent, setDirection, setDirection
-
Constructor Details
-
EquirectangularRotate_F32
public EquirectangularRotate_F32()
-
-
Method Details
-
setEquirectangularShape
public void setEquirectangularShape(int width, int height) Specifies the image's width and height- Overrides:
setEquirectangularShape
in classEquirectangularDistortBase_F32
- 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.
-