Common Map Creation method
Hi,
Originally when I tried to create a 2D-Occupancy
map, I do it manually or use the rrt_exploration
algorithm to do it. However, the result is unstable and sometimes not that ideal. It all depends upon how robust the sensor and wheel encoder are. Further, if there is a moving object, sometimes, they will be mapped into the map as well.
Recently, I dig into the map and found that if I have a floorplan I can use OpenCV
to convert it into a 2D-Occupancy
map. The only drawback, I experience right now is that the thickness of walls is usually wrong. Hence, when the robot tried to make a turn around the corner, sometimes the costmap doesn't match with the Occupancy map but it is within an acceptable range.
I wonder which above method is commonly used in real cases?