minor doxygen fixes
parent
fdaaf4c558
commit
57b4c79cad
|
@ -174,7 +174,7 @@ Point3 triangulateNonlinear(
|
||||||
* @param poses A vector of camera poses
|
* @param poses A vector of camera poses
|
||||||
* @param sharedCal shared pointer to single calibration object
|
* @param sharedCal shared pointer to single calibration object
|
||||||
* @param measurements A vector of camera measurements
|
* @param measurements A vector of camera measurements
|
||||||
* @param rank tolerance, default 1e-9
|
* @param rank_tol rank tolerance, default 1e-9
|
||||||
* @param optimize Flag to turn on nonlinear refinement of triangulation
|
* @param optimize Flag to turn on nonlinear refinement of triangulation
|
||||||
* @return Returns a Point3
|
* @return Returns a Point3
|
||||||
*/
|
*/
|
||||||
|
@ -222,7 +222,7 @@ Point3 triangulatePoint3(const std::vector<Pose3>& poses,
|
||||||
* no other checks to verify the quality of the triangulation.
|
* no other checks to verify the quality of the triangulation.
|
||||||
* @param cameras pinhole cameras
|
* @param cameras pinhole cameras
|
||||||
* @param measurements A vector of camera measurements
|
* @param measurements A vector of camera measurements
|
||||||
* @param rank tolerance, default 1e-9
|
* @param rank_tol rank tolerance, default 1e-9
|
||||||
* @param optimize Flag to turn on nonlinear refinement of triangulation
|
* @param optimize Flag to turn on nonlinear refinement of triangulation
|
||||||
* @return Returns a Point3
|
* @return Returns a Point3
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -111,7 +111,7 @@ namespace gtsam {
|
||||||
* assumed to have already been solved in and their values are read from \c x.
|
* assumed to have already been solved in and their values are read from \c x.
|
||||||
* This function works for multiple frontal variables.
|
* This function works for multiple frontal variables.
|
||||||
*
|
*
|
||||||
* Given the Gaussian conditional with log likelihood \f$ |R x_f - (d - S x_s)|^2,
|
* Given the Gaussian conditional with log likelihood \f$ |R x_f - (d - S x_s)|^2 \f$,
|
||||||
* where \f$ f \f$ are the frontal variables and \f$ s \f$ are the separator
|
* where \f$ f \f$ are the frontal variables and \f$ s \f$ are the separator
|
||||||
* variables of this conditional, this solve function computes
|
* variables of this conditional, this solve function computes
|
||||||
* \f$ x_f = R^{-1} (d - S x_s) \f$ using back-substitution.
|
* \f$ x_f = R^{-1} (d - S x_s) \f$ using back-substitution.
|
||||||
|
|
|
@ -29,6 +29,7 @@ public:
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor
|
* Constructor
|
||||||
|
* @param key Essential Matrix variable key
|
||||||
* @param pA point in first camera, in calibrated coordinates
|
* @param pA point in first camera, in calibrated coordinates
|
||||||
* @param pB point in second camera, in calibrated coordinates
|
* @param pB point in second camera, in calibrated coordinates
|
||||||
* @param model noise model is about dot product in ideal, homogeneous coordinates
|
* @param model noise model is about dot product in ideal, homogeneous coordinates
|
||||||
|
@ -42,6 +43,7 @@ public:
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor
|
* Constructor
|
||||||
|
* @param key Essential Matrix variable key
|
||||||
* @param pA point in first camera, in pixel coordinates
|
* @param pA point in first camera, in pixel coordinates
|
||||||
* @param pB point in second camera, in pixel coordinates
|
* @param pB point in second camera, in pixel coordinates
|
||||||
* @param model noise model is about dot product in ideal, homogeneous coordinates
|
* @param model noise model is about dot product in ideal, homogeneous coordinates
|
||||||
|
@ -99,6 +101,8 @@ public:
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor
|
* Constructor
|
||||||
|
* @param key1 Essential Matrix variable key
|
||||||
|
* @param key2 Inverse depth variable key
|
||||||
* @param pA point in first camera, in calibrated coordinates
|
* @param pA point in first camera, in calibrated coordinates
|
||||||
* @param pB point in second camera, in calibrated coordinates
|
* @param pB point in second camera, in calibrated coordinates
|
||||||
* @param model noise model should be in pixels, as well
|
* @param model noise model should be in pixels, as well
|
||||||
|
@ -113,6 +117,8 @@ public:
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor
|
* Constructor
|
||||||
|
* @param key1 Essential Matrix variable key
|
||||||
|
* @param key2 Inverse depth variable key
|
||||||
* @param pA point in first camera, in pixel coordinates
|
* @param pA point in first camera, in pixel coordinates
|
||||||
* @param pB point in second camera, in pixel coordinates
|
* @param pB point in second camera, in pixel coordinates
|
||||||
* @param K calibration object, will be used only in constructor
|
* @param K calibration object, will be used only in constructor
|
||||||
|
@ -216,6 +222,8 @@ public:
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor
|
* Constructor
|
||||||
|
* @param key1 Essential Matrix variable key
|
||||||
|
* @param key2 Inverse depth variable key
|
||||||
* @param pA point in first camera, in calibrated coordinates
|
* @param pA point in first camera, in calibrated coordinates
|
||||||
* @param pB point in second camera, in calibrated coordinates
|
* @param pB point in second camera, in calibrated coordinates
|
||||||
* @param bRc extra rotation between "body" and "camera" frame
|
* @param bRc extra rotation between "body" and "camera" frame
|
||||||
|
@ -228,6 +236,8 @@ public:
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor
|
* Constructor
|
||||||
|
* @param key1 Essential Matrix variable key
|
||||||
|
* @param key2 Inverse depth variable key
|
||||||
* @param pA point in first camera, in pixel coordinates
|
* @param pA point in first camera, in pixel coordinates
|
||||||
* @param pB point in second camera, in pixel coordinates
|
* @param pB point in second camera, in pixel coordinates
|
||||||
* @param K calibration object, will be used only in constructor
|
* @param K calibration object, will be used only in constructor
|
||||||
|
|
Loading…
Reference in New Issue