Package boofcv.alg.distort.spherical
Class EquirectangularDistortBase_F32
java.lang.Object
boofcv.alg.distort.spherical.EquirectangularDistortBase_F32
- All Implemented Interfaces:
PixelTransform<Point2D_F32>
- Direct Known Subclasses:
CameraToEquirectangular_F32
,CylinderToEquirectangular_F32
,EquirectangularRotate_F32
@Generated("boofcv.alg.distort.spherical.EquirectangularDistortBase_F64")
public abstract class EquirectangularDistortBase_F32
extends Object
implements PixelTransform<Point2D_F32>
Base class for all distortions from an equirectangular image. The output image precomputes pointing vectors from
a canonical view. The source pixel is then computed by rotating each vector and computing the longitude and
latitude.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
compute
(int x, int y, Point2D_F32 out) Input is in pinhole camera pixel coordinates.protected void
declareVectors
(int width, int height) Declares storage for precomputed pointing vectors to output imagegetTools()
void
setConcurrent
(EquirectangularDistortBase_F32 original) Set for concurrent code.void
setDirection
(float yaw, float pitch, float roll) Specifies the rotation offset from the canonical location using yaw and pitch.void
Specifies direction using a rotation matrixvoid
setEquirectangularShape
(int width, int height) Specify the shame of the equirectangular imageMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface boofcv.struct.distort.PixelTransform
copyConcurrent
-
Constructor Details
-
EquirectangularDistortBase_F32
public EquirectangularDistortBase_F32()
-
-
Method Details
-
setEquirectangularShape
public void setEquirectangularShape(int width, int height) Specify the shame of the equirectangular image- Parameters:
width
- equirectangular image widthheight
- equirectangular image height
-
setConcurrent
Set for concurrent code. Doesn't copy expensive model variables -
setDirection
public void setDirection(float yaw, float pitch, float roll) Specifies the rotation offset from the canonical location using yaw and pitch.- Parameters:
yaw
- Radian from -pi to pipitch
- Radian from -pi/2 to pi/2roll
- Radian from -pi to pi
-
setDirection
Specifies direction using a rotation matrix- Parameters:
R
- rotation matrix
-
declareVectors
protected void declareVectors(int width, int height) Declares storage for precomputed pointing vectors to output image- Parameters:
width
- output image widthheight
- output image height
-
compute
Input is in pinhole camera pixel coordinates. Output is in equirectangular coordinates- Specified by:
compute
in interfacePixelTransform<Point2D_F32>
- Parameters:
x
- Pixel x-coordinate in rendered pinhole cameray
- Pixel y-coordinate in rendered pinhole cameraout
- The transformed pixel
-
getTools
-
getRotation
-