ORB_SLAM
ORB_SLAM copied to clipboard
grid in ORBextractor
@raulmur Hi, in ComputeKeyPoints() in ORBextractor.cc, computation of the levelCols/levelRows can be slightly modified (usage of imageRatio).
const int levelRows = imageRatio*levelCols;
change to
const int levelRows = levelCols / imageRatio;
This modification makes levelCols/levelRows = imageRatio = image.cols / image.rows . The keypoints may distribute better when cols>>rows, i think.
( https://github.com/raulmur/ORB_SLAM/blob/master/src/ORBextractor.cc#L533 )
I believe you are right, ORB-SLAM2 no longer uses this method.