Class Odometry
java.lang.Object
org.opencv.ptcloud.Odometry
-
Field Summary
Fields -
Constructor Summary
ConstructorsModifierConstructorDescriptionOdometry()Odometry(int otype) Odometry(int otype, OdometrySettings settings, int algtype) protectedOdometry(long addr) -
Method Summary
Modifier and TypeMethodDescriptionstatic Odometry__fromPtr__(long addr) booleanCompute Rigid Transformation between two frames so that Rt * src = dstbooleanCompute Rigid Transformation between two frames so that Rt * src = dstbooleancompute(OdometryFrame srcFrame, OdometryFrame dstFrame, Mat Rt) Compute Rigid Transformation between two frames so that Rt * src = dst Both frames, source and destination, should have been prepared by calling prepareFrame() firstlongGet the normals computer object used for normals calculation (if presented).voidprepareFrame(OdometryFrame frame) Prepare frame for odometry calculationvoidprepareFrames(OdometryFrame srcFrame, OdometryFrame dstFrame) Prepare frame for odometry calculation
-
Field Details
-
nativeObj
protected final long nativeObj
-
-
Constructor Details
-
Odometry
protected Odometry(long addr) -
Odometry
public Odometry() -
Odometry
public Odometry(int otype) -
Odometry
-
-
Method Details
-
getNativeObjAddr
public long getNativeObjAddr() -
__fromPtr__
-
prepareFrame
Prepare frame for odometry calculation- Parameters:
frame- odometry prepare this frame as src frame and dst frame simultaneously
-
prepareFrames
Prepare frame for odometry calculation- Parameters:
srcFrame- frame will be prepared as src frame ("original" image)dstFrame- frame will be prepared as dsr frame ("rotated" image)
-
compute
Compute Rigid Transformation between two frames so that Rt * src = dst Both frames, source and destination, should have been prepared by calling prepareFrame() first- Parameters:
srcFrame- src frame ("original" image)dstFrame- dst frame ("rotated" image)Rt- Rigid transformation, which will be calculated, in form: { R_11 R_12 R_13 t_1 R_21 R_22 R_23 t_2 R_31 R_32 R_33 t_3 0 0 0 1 }- Returns:
- true on success, false if failed to find the transformation
-
compute
Compute Rigid Transformation between two frames so that Rt * src = dst- Parameters:
srcDepth- source depth ("original" image)dstDepth- destination depth ("rotated" image)Rt- Rigid transformation, which will be calculated, in form: { R_11 R_12 R_13 t_1 R_21 R_22 R_23 t_2 R_31 R_32 R_33 t_3 0 0 0 1 }- Returns:
- true on success, false if failed to find the transformation
-
compute
Compute Rigid Transformation between two frames so that Rt * src = dst- Parameters:
srcDepth- source depth ("original" image)srcRGB- source RGBdstDepth- destination depth ("rotated" image)dstRGB- destination RGBRt- Rigid transformation, which will be calculated, in form: { R_11 R_12 R_13 t_1 R_21 R_22 R_23 t_2 R_31 R_32 R_33 t_3 0 0 0 1 }- Returns:
- true on success, false if failed to find the transformation
-
getNormalsComputer
Get the normals computer object used for normals calculation (if presented). The normals computer is generated at first need during prepareFrame when normals are required for the ICP algorithm but not presented by a user. Re-generated each time the related settings change or a new frame arrives with the different size.- Returns:
- automatically generated
-