mirror of
https://github.com/introlab/rtabmap.git
synced 2026-09-03 01:50:24 +08:00
DBReader: set calibrated true when only scans in db. RegIcp: added intensity matching option when complexity is low. OdomF2M: accept first key frame on low complexity if a guess is provided. DbViewer: added gravity visualization in 3D view.
This commit is contained in:
@@ -1322,6 +1322,16 @@ Transform OdometryF2M::computeTransform(
|
||||
{
|
||||
frameValid = true;
|
||||
}
|
||||
else if(!guess.isNull() && !guess.isIdentity())
|
||||
{
|
||||
UWARN("Scan complexity too low (%f) to init robustly the first "
|
||||
"keyframe. Make sure the lidar is seeing enough "
|
||||
"geometry in all axes for good initialization. "
|
||||
"Accepting as an initial guess (%s) is provided.",
|
||||
complexity,
|
||||
guess.prettyPrint().c_str());
|
||||
frameValid = true;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user