mirror of
https://github.com/introlab/rtabmap.git
synced 2026-09-10 05:20:19 +08:00
Create2DMap: eroding only on cells having at least 3 empty neighbor cells
This commit is contained in:
@@ -1334,6 +1334,7 @@ bool Rtabmap::process(
|
||||
// When analysing logs, it's convenient to know
|
||||
// if the hypothesis would be rejected if T_loop would be lower.
|
||||
rejectedHypothesis = true;
|
||||
UWARN("rejected hypothesis: under loop ratio %f < %f", _highestHypothesis.second, _loopRatio*lastHighestHypothesis.second);
|
||||
}
|
||||
|
||||
//for statistic...
|
||||
@@ -1791,7 +1792,7 @@ bool Rtabmap::process(
|
||||
rejectedHypothesis = transform.isNull();
|
||||
if(rejectedHypothesis)
|
||||
{
|
||||
UINFO("Rejected loop closure %d -> %d: %s",
|
||||
UWARN("Rejected loop closure %d -> %d: %s",
|
||||
_loopClosureHypothesis.first, signature->id(), rejectedMsg.c_str());
|
||||
}
|
||||
}
|
||||
|
||||
@@ -349,7 +349,7 @@ cv::Mat create2DMapFromOccupancyLocalMaps(
|
||||
|
||||
if(erode)
|
||||
{
|
||||
// remove obstacles which touch to empty cells but not unknown cells
|
||||
// remove obstacles which touch at least 3 empty cells but not unknown cells
|
||||
cv::Mat erodedMap = map.clone();
|
||||
for(std::list<std::pair<int,int> >::iterator iter = obstacleIndices.begin();
|
||||
iter!= obstacleIndices.end();
|
||||
@@ -357,11 +357,11 @@ cv::Mat create2DMapFromOccupancyLocalMaps(
|
||||
{
|
||||
int i = iter->first;
|
||||
int j = iter->second;
|
||||
bool touchEmpty = map.at<char>(i+1, j) == 0 ||
|
||||
map.at<char>(i-1, j) == 0 ||
|
||||
map.at<char>(i, j+1) == 0 ||
|
||||
map.at<char>(i, j-1) == 0;
|
||||
if(touchEmpty && map.at<char>(i+1, j) != -1 &&
|
||||
int touchEmpty = (map.at<char>(i+1, j) == 0?1:0) +
|
||||
(map.at<char>(i-1, j) == 0?1:0) +
|
||||
(map.at<char>(i, j+1) == 0?1:0) +
|
||||
(map.at<char>(i, j-1) == 0?1:0);
|
||||
if(touchEmpty>=3 && map.at<char>(i+1, j) != -1 &&
|
||||
map.at<char>(i-1, j) != -1 &&
|
||||
map.at<char>(i, j+1) != -1 &&
|
||||
map.at<char>(i, j-1) != -1)
|
||||
|
||||
Reference in New Issue
Block a user