mirror of
https://github.com/introlab/rtabmap.git
synced 2026-09-03 01:50:24 +08:00
RegInfo: fixed copy without data.
This commit is contained in:
@@ -43,7 +43,8 @@ public:
|
|||||||
icpInliersRatio(0),
|
icpInliersRatio(0),
|
||||||
icpTranslation(0.0f),
|
icpTranslation(0.0f),
|
||||||
icpRotation(0.0f),
|
icpRotation(0.0f),
|
||||||
icpStructuralComplexity(0.0f)
|
icpStructuralComplexity(0.0f),
|
||||||
|
icpCorrespondences(0)
|
||||||
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
@@ -62,6 +63,7 @@ public:
|
|||||||
output.icpTranslation = icpTranslation;
|
output.icpTranslation = icpTranslation;
|
||||||
output.icpRotation = icpRotation;
|
output.icpRotation = icpRotation;
|
||||||
output.icpStructuralComplexity = icpStructuralComplexity;
|
output.icpStructuralComplexity = icpStructuralComplexity;
|
||||||
|
output.icpCorrespondences = icpCorrespondences;
|
||||||
return output;
|
return output;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -593,6 +593,7 @@ MainWindow::MainWindow(PreferencesDialog * prefDialog, QWidget * parent, bool sh
|
|||||||
_ui->statsToolBox->updateStat("Odometry/ICPRotation/rad", false);
|
_ui->statsToolBox->updateStat("Odometry/ICPRotation/rad", false);
|
||||||
_ui->statsToolBox->updateStat("Odometry/ICPTranslation/m", false);
|
_ui->statsToolBox->updateStat("Odometry/ICPTranslation/m", false);
|
||||||
_ui->statsToolBox->updateStat("Odometry/ICPStructuralComplexity/", false);
|
_ui->statsToolBox->updateStat("Odometry/ICPStructuralComplexity/", false);
|
||||||
|
_ui->statsToolBox->updateStat("Odometry/ICPCorrespondences/", false);
|
||||||
_ui->statsToolBox->updateStat("Odometry/StdDevLin/", false);
|
_ui->statsToolBox->updateStat("Odometry/StdDevLin/", false);
|
||||||
_ui->statsToolBox->updateStat("Odometry/StdDevAng/", false);
|
_ui->statsToolBox->updateStat("Odometry/StdDevAng/", false);
|
||||||
_ui->statsToolBox->updateStat("Odometry/VarianceLin/", false);
|
_ui->statsToolBox->updateStat("Odometry/VarianceLin/", false);
|
||||||
|
|||||||
Reference in New Issue
Block a user