mirror of
https://github.com/introlab/rtabmap.git
synced 2026-09-03 01:50:24 +08:00
CCCorelib: updated wrong output check. Updated RGBD/MaxOdomCacheSize approach to work properly with Rtabmap/CreateIntermediateNodes=true.
This commit is contained in:
@@ -137,15 +137,14 @@ rtabmap::Transform icpCC(
|
||||
icpTransformation.setNull();
|
||||
return icpTransformation;
|
||||
}
|
||||
else if(finalPointCount < 50)
|
||||
else if(!transform.R.isValid())
|
||||
{
|
||||
std::string msg = uFormat("CCCoreLib has failed: Rejecting transform as finalPointCount %d < 50 ", finalPointCount);
|
||||
std::string msg = uFormat("CCCoreLib has failed: Rotation matrix is invalid");
|
||||
UDEBUG(msg.c_str());
|
||||
if(errorMsg)
|
||||
{
|
||||
*errorMsg = msg;
|
||||
}
|
||||
|
||||
icpTransformation.setNull();
|
||||
return icpTransformation;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user