mirror of
https://github.com/introlab/rtabmap.git
synced 2026-09-02 17:40:23 +08:00
fixed compilation warning
This commit is contained in:
@@ -241,7 +241,7 @@ void floodfill(QImage & image, const cv::Mat & depthImage, int x, int y, float l
|
||||
}
|
||||
|
||||
QRgb rgb = image.pixel(x,y);
|
||||
if(qRed(rgb) == 0 && qGreen(rgb) == 0 == qBlue(rgb) == 0)
|
||||
if(qRed(rgb) == 0 && qGreen(rgb) == 0 && qBlue(rgb) == 0)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user