mirror of
https://github.com/introlab/rtabmap.git
synced 2026-09-02 17:40:23 +08:00
ExportDialog: Added OpenChisel meshing option
This commit is contained in:
@@ -126,7 +126,7 @@ Memory::Memory(const ParametersMap & parameters) :
|
||||
{
|
||||
UWARN( "%s is >=0.5, which sets correspondence ratio for proximity detection using "
|
||||
"laser scans to 100% (2 x Ratio). You may lower the ratio to accept proximity "
|
||||
"detection with not full scans overlapping.");
|
||||
"detection with not full scans overlapping.", Parameters::kIcpCorrespondenceRatio().c_str());
|
||||
}
|
||||
_registrationIcpMulti = new RegistrationIcp(paramsMulti);
|
||||
|
||||
@@ -584,7 +584,7 @@ void Memory::parseParameters(const ParametersMap & parameters)
|
||||
{
|
||||
UWARN( "%s is >=0.5, which sets correspondence ratio for proximity detection using "
|
||||
"laser scans to 100% (2 x Ratio). You may lower the ratio to accept proximity "
|
||||
"detection with not full scans overlapping.");
|
||||
"detection with not full scans overlapping.", Parameters::kIcpCorrespondenceRatio().c_str());
|
||||
}
|
||||
_registrationIcpMulti->parseParameters(paramsMulti);
|
||||
}
|
||||
|
||||
@@ -640,6 +640,11 @@ pcl::texture_mapping::CameraVector createTextureCameras(
|
||||
cam.depth = cv::Mat(depthIter->second, cv::Range(0, depthIter->second.rows), cv::Range(subWidth*i, subWidth*(i+1)));
|
||||
}
|
||||
|
||||
UWARN("%f", cam.focal_length);
|
||||
UWARN("%f", cam.height);
|
||||
UWARN("%f", cam.width);
|
||||
UWARN("cam.pose=%s", t.prettyPrint().c_str());
|
||||
|
||||
cameras.push_back(cam);
|
||||
}
|
||||
}
|
||||
@@ -1990,7 +1995,7 @@ cv::Mat mergeTextures(
|
||||
}
|
||||
}
|
||||
}
|
||||
UDEBUG("globalTextures=%d", globalTextures.cols / globalTextures.rows);
|
||||
UDEBUG("globalTextures=%d", globalTextures.cols?globalTextures.cols / globalTextures.rows:0);
|
||||
return globalTextures;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user