RegistrationInfo: added IcpTranslation and IcpRotation members

This commit is contained in:
matlabbe
2016-07-05 11:23:59 -04:00
parent 1365eaca3a
commit 20862f07bc
2 changed files with 11 additions and 5 deletions

View File

@@ -18,7 +18,9 @@ public:
variance(0),
inliers(0),
matches(0),
icpInliersRatio(0)
icpInliersRatio(0),
icpTranslation(0.0f),
icpRotation(0.0f)
{
}
@@ -33,6 +35,8 @@ public:
// RegistrationIcp
float icpInliersRatio;
float icpTranslation;
float icpRotation;
};
}