mirror of
https://github.com/introlab/rtabmap.git
synced 2026-09-03 01:50:24 +08:00
fixed typo
This commit is contained in:
@@ -875,11 +875,11 @@ int RTABMapApp::updateMeshDecimation(int width, int height)
|
||||
{
|
||||
meshDecimation = 5;
|
||||
}
|
||||
else if(width % 3 == 0 && width % 3 == 0)
|
||||
else if(width % 3 == 0 && height % 3 == 0)
|
||||
{
|
||||
meshDecimation = 3;
|
||||
}
|
||||
else if(width % 2 == 0 && width % 2 == 0)
|
||||
else if(width % 2 == 0 && height % 2 == 0)
|
||||
{
|
||||
meshDecimation = 2;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user