mirror of
https://github.com/introlab/rtabmap.git
synced 2026-09-02 01:20:25 +08:00
fixed typo
This commit is contained in:
@@ -1224,7 +1224,7 @@ int RTABMapApp::postProcessing(int approach)
|
||||
{
|
||||
boost::mutex::scoped_lock lock(renderingMutex_);
|
||||
// filter polygons
|
||||
if(approach == -1 && approach == 4)
|
||||
if(approach == -1 || approach == 4)
|
||||
{
|
||||
filterPolygonsOnNextRender_ = true;
|
||||
}
|
||||
@@ -1236,7 +1236,7 @@ int RTABMapApp::postProcessing(int approach)
|
||||
}
|
||||
|
||||
// bilateral filtering
|
||||
if(approach == -1 && approach == 7)
|
||||
if(approach == -1 || approach == 7)
|
||||
{
|
||||
bilateralFilteringOnNextRender_ = true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user