Under this name we find functions in charge of solving the optimization problem of aligning a set of correspondences, both in 2D and in 3D. Note that this does not includes the iterative ICP algorithm (see mrpt::slam::CICP), included in another library (mrpt-slam).
|
double SCANMATCHING_IMPEXP | mrpt::scanmatching::HornMethod (const vector_double &inPoints, vector_double &outQuat, bool forceScaleToUnity=false) |
| This function implements the Horn method for computing the change in pose between two coordinate systems. More...
|
|
double SCANMATCHING_IMPEXP | mrpt::scanmatching::HornMethod (const vector_double &inPoints, mrpt::poses::CPose3DQuat &outQuat, bool forceScaleToUnity=false) |
|
bool SCANMATCHING_IMPEXP | mrpt::scanmatching::leastSquareErrorRigidTransformation6D (const TMatchingPairList &in_correspondences, CPose3DQuat &out_transformation, double &out_scale, const bool forceScaleToUnity=false) |
| This method provides the closed-form solution of absolute orientation using unit quaternions to a set of over-constrained correspondences for finding the 6D rigid transformation between two cloud of 3D points. More...
|
|
bool SCANMATCHING_IMPEXP | mrpt::scanmatching::leastSquareErrorRigidTransformation6D (const TMatchingPairList &in_correspondences, CPose3D &out_transformation, double &out_scale, const bool forceScaleToUnity=false) |
| This method provides the closed-form solution of absolute orientation using unit quaternions to a set of over-constrained correspondences for finding the 6D rigid transformation between two cloud of 3D points. More...
|
|
bool SCANMATCHING_IMPEXP | mrpt::scanmatching::leastSquareErrorRigidTransformation6DRANSAC (const TMatchingPairList &in_correspondences, CPose3D &out_transformation, double &out_scale, vector_int &out_inliers_idx, const unsigned int ransac_minSetSize=5, const unsigned int ransac_nmaxSimulations=50, const double ransac_maxSetSizePct=0.7, const bool forceScaleToUnity=false) |
| This method provides the closed-form solution of absolute orientation using unit quaternions to a set of over-constrained correspondences for finding the 6D rigid transformation between two cloud of 3D points using RANSAC. More...
|
|
bool SCANMATCHING_IMPEXP | mrpt::scanmatching::leastSquareErrorRigidTransformation (TMatchingPairList &in_correspondences, CPose2D &out_transformation, CMatrixDouble33 *out_estimateCovariance=NULL) |
| This method provides the basic least-square-error solution to a set of over-constrained correspondences for finding the (x,y,phi) rigid transformation between two planes. More...
|
|
bool SCANMATCHING_IMPEXP | mrpt::scanmatching::leastSquareErrorRigidTransformation (TMatchingPairList &in_correspondences, CPosePDFGaussian &out_transformation) |
| This method provides the basic least-square-error solution to a set of over-constrained correspondences for finding the (x,y,phi) rigid transformation between two planes. More...
|
|
void SCANMATCHING_IMPEXP | mrpt::scanmatching::robustRigidTransformation (TMatchingPairList &in_correspondences, poses::CPosePDFSOG &out_transformation, float normalizationStd, unsigned int ransac_minSetSize=3, unsigned int ransac_maxSetSize=20, float ransac_mahalanobisDistanceThreshold=3.0f, unsigned int ransac_nSimulations=0, TMatchingPairList *out_largestSubSet=NULL, bool ransac_fuseByCorrsMatch=true, float ransac_fuseMaxDiffXY=0.01f, float ransac_fuseMaxDiffPhi=DEG2RAD(0.1f), bool ransac_algorithmForLandmarks=true, double probability_find_good_model=0.999, unsigned int ransac_min_nSimulations=1500, const bool verbose=false, double max_rmse_to_end=0) |
| This method implements a RANSAC-based robust estimation of the rigid transformation between two planar frames of references, returning a probability distribution over all the posibilities as a Sum of Gaussians. More...
|
|
bool SCANMATCHING_IMPEXP mrpt::scanmatching::leastSquareErrorRigidTransformation6DRANSAC |
( |
const TMatchingPairList & |
in_correspondences, |
|
|
CPose3D & |
out_transformation, |
|
|
double & |
out_scale, |
|
|
vector_int & |
out_inliers_idx, |
|
|
const unsigned int |
ransac_minSetSize = 5 , |
|
|
const unsigned int |
ransac_nmaxSimulations = 50 , |
|
|
const double |
ransac_maxSetSizePct = 0.7 , |
|
|
const bool |
forceScaleToUnity = false |
|
) |
| |
This method provides the closed-form solution of absolute orientation using unit quaternions to a set of over-constrained correspondences for finding the 6D rigid transformation between two cloud of 3D points using RANSAC.
The output 3D pose is computed using the method described in "Closed-form solution of absolute orientation using unit quaternions", BKP Horn, Journal of the Optical Society of America, 1987. If supplied, the output covariance matrix is computed using... TODO
- Todo:
- Explain covariance!!
- Parameters
-
in_correspondences | The set of correspondences. |
out_transformation | The pose that minimizes the mean-square-error between all the correspondences. |
out_scale | The estimated scale of the rigid transformation (should be very close to 1.0) |
out_inliers_idx | Indexes within the "in_correspondences" list which corresponds with inliers |
ransac_minSetSize | The minimum amount of points in the set |
ransac_nmaxSimulations | The maximum number of iterations of the RANSAC algorithm |
ransac_maxSetSizePct | The (minimum) assumed percent (0.0 - 1.0) of the input set to be considered as inliers |
- Exceptions
-
Raises | a std::exception if the list "in_correspondences" has not a minimum of two correspondences. |
- Returns
- True if there are at least two correspondences, or false if one or none, thus we cannot establish any correspondence. Implemented by FAMD, 2008.
- See also
- robustRigidTransformation
void SCANMATCHING_IMPEXP mrpt::scanmatching::robustRigidTransformation |
( |
TMatchingPairList & |
in_correspondences, |
|
|
poses::CPosePDFSOG & |
out_transformation, |
|
|
float |
normalizationStd, |
|
|
unsigned int |
ransac_minSetSize = 3 , |
|
|
unsigned int |
ransac_maxSetSize = 20 , |
|
|
float |
ransac_mahalanobisDistanceThreshold = 3.0f , |
|
|
unsigned int |
ransac_nSimulations = 0 , |
|
|
TMatchingPairList * |
out_largestSubSet = NULL , |
|
|
bool |
ransac_fuseByCorrsMatch = true , |
|
|
float |
ransac_fuseMaxDiffXY = 0.01f , |
|
|
float |
ransac_fuseMaxDiffPhi = DEG2RAD(0.1f) , |
|
|
bool |
ransac_algorithmForLandmarks = true , |
|
|
double |
probability_find_good_model = 0.999 , |
|
|
unsigned int |
ransac_min_nSimulations = 1500 , |
|
|
const bool |
verbose = false , |
|
|
double |
max_rmse_to_end = 0 |
|
) |
| |
This method implements a RANSAC-based robust estimation of the rigid transformation between two planar frames of references, returning a probability distribution over all the posibilities as a Sum of Gaussians.
The technique was described in the paper:
This works are follows:
- Repeat "ransac_nSimulations" times:
- Randomly pick TWO correspondences from the set "in_correspondences".
- Compute the associated rigid transformation.
- For "ransac_maxSetSize" randomly selected correspondences, test for "consensus" with the current group:
- If if is compatible (ransac_mahalanobisDistanceThreshold), grow the "consensus set"
- If not, do not add it.
For more details refer to the tutorial on scan matching methods. NOTE:
- If a pointer is supplied to "out_largestSubSet", the largest consensus sub-set of correspondences will be returned there.
- The parameter "normalizationStd" is the standard deviation (not variance) of landmarks being matched in X,Y. Used to normalize covariances returned as the SoG.
- If ransac_nSimulations=0 then an adaptive algorithm is used to determine the number of iterations, such as a good model is found with a probability p=0.999, or that passed as the parameter probability_find_good_model
- When using "probability_find_good_model", the minimum number of iterations can be set with "ransac_min_nSimulations".
- "ransac_maxSetSize" should be set to "in_correspondences.size()" to make sure that every correspondence is tested for each random permutation.
If ransac_fuseByCorrsMatch=true (the default), the weight of Gaussian modes will be increased when an exact match in the subset of correspondences for the modes is found. Otherwise, an approximate method is used as test by just looking at the resulting X,Y,PHI means (Threshold in this case are: ransac_fuseMaxDiffXY, ransac_fuseMaxDiffPhi).
- Parameters
-
[in] | max_rmse_to_end | Stop searching for solutions when the RMSE of one solution is below this threshold. Special value "0" means "auto", which employs "2*normalizationStd". |
- Exceptions
-
Raises | a std::exception if the list "in_correspondences" has not a minimum of two correspondences. |
- See also
- leastSquareErrorRigidTransformation