Skip to content

IROS 2014 Kinect Challenge

matlabbe edited this page Jun 3, 2020 · 15 revisions

Some mapping results from the winners of the IROS 2014 Kinect Navigation Contest Analytics

Introduction

One week before the IROS 2014 conference, I received an email from the SV-ROS Maxed-Out team telling me that they are using my code RTAB-Map (which is Open Source) for the Kinect Robot Navigation Contest held during the conference. I am always glad to know when someone is using what I have done, so I said I will answer as fast as possible to any questions/problems they have before the contest. During the conference, since I was already in Chicago to present a paper, I met them in person and I helped them with the parametrization of the algorithm... and good surprise, they won the contest! See their official press release here.

This contest featured robots (equipped only with a Kinect) navigating autonomously across multiple waypoints in a typical office environment. Before the autonomous navigation phase, the first part of the contest was to map the environment so that the robot can plan trajectories in it. The robot is driven through the environment to incrementally create a 2D map (like a top view map of an office), using only its sensors. Sensors are not perfect, so the map can be misaligned over time. These errors can be minimized when the robot detects when it comes back to a previously visited area, a process called loop closure detection. This mapping approach is known as Simultaneous Localization And Mapping (SLAM). SLAM is used when the robot doesn’t have a map already built of the environment and when it doesn’t have access to external global localization sensors (like a GPS) to localize itself. The mapping solution chosen by the SV-ROS team was my SLAM approach called RTAB-Map (Real-Time Appearance-Based Mapping). I will discuss here more technically about the RTAB-Map part of the solution.

The robot

The robot was an Adept MobileRobots Pioneer 3 DX equipped with a Kinect sensor. The up-facing camera was only used by the scoring computer (detecting patterns on the ceiling to localize the robot). The RTAB-Map ROS setup was based on the "Kinect + Odometry + Fake 2D laser from Kinect" configuration. The "2D laser" was simulated using the Kinect and the depthimage_to_laserscan ros-pkg. In this configuration, the robot is constrained to a plane (x,y and yaw).

Source: IROS 2014

Contest environment

The challenge was held in the exhibit room in the Palmer House Hotel. Since RTAB-Map's loop closure detection is based on visual appearance of the environment, the repetitive texture on the carpet made it very challenging. When there were only discriminative visual features on the floor (like a long hall), loop closures could be found with images from different locations, thus causing big errors in the map. To avoid this problem, just 2 minutes before the official mapping run, we have set a parameter to ignore 30% of the bottom image for features extraction. We didn't have the chance to test it before the official mapping run, only we could do is to cross our fingers that no wrong loop closures would be found!

Contest environment Filtering visual features of the floor
Palmer House features

Results

After the mapping, no wrong loop closures were found. However, the robot missed a loop closure on the bottom of the map (because the camera was not facing the same direction), causing a wall at the end of the hall. This is a case when exploring an unknown environment, it would be better to do occasionally a 360 to see more images at different angles to find more loop closures when revisiting an area "backward". However, using rtabmap-databaseViewer tool, a loop closure between locations before and after exploring the hall could be detected (by reprocessing data included in the database). The result is an aligned bottom corner. There's still a misalignment on the middle-top, but the map was good enough in the time we had to do the navigation part of the contest. Section Updated Results shows results with these remaining errors corrected. The loop closures are shown in red.

After first mapping Used for navigation Updated results (after the challenge)
 raw raw_corrected updated

During the autonomous navigation phase, RTAB-Map was set in localization mode with the pre-built map. By detecting "loop closures" with the previous map, the robot is relocalized so it can efficiently plan its trajectories through the environment.

Updated Results

In this section, I will show a parametrization of RTAB-Map that I did after the challenge to automatically find more loop closures. The video above can be reproduced using the data here:

You can open RTAB-Map (standalone, not the ros-pkg) using the configuration file above, then set "Source from database" and select the database above. Set Source rate to 2 Hz and press start, this should reproduce the video above. Here the principal parameters modified from the defaults:

// -Filter 30% bottom of the image
// -Maximum depth of the features is 4 meters
Kp/RoiRatios=0 0 0 0.3
Kp/MaxDepth=4

// -Loop closure constraint, computed visually
LccBow/Force2D=true
LccBow/InlierDistance=0.05
LccBow/MaxDepth=4
LccBow/MinInliers=3

// -Refining visual loop closure constraint using 
//   2D icp on laser scans
LccIcp/Type=2
LccIcp2/CorrespondenceRatio=0.5
LccIcp2/VoxelSize=0

// -Disabled local loop closure detection based on time.
// -Optimize graph from the graph beginning, to 
//   have same referential when relocalizing to this 
//   map in localization mode.
RGBD/LocalLoopDetectionTime=false
RGBD/OptimizeFromGraphEnd=false

// -Extract more SURF features
SURF/HessianThreshold=60

// Run this for a description of the parameters:
$ rosrun rtabmap rtabmap --params

The following pictures show a comparison of the results with and without loop closures:

Odometry-only With loop closures
 2D Map top_map_raw top_map
3D Cloud  top_cloud_raw  top_cloud
2D Map + 3D Cloud  top_combined_raw  top_combined
3D Cloud (download here: cloud.ply) 3D Cloud + 2D Map (saved with map_server: map.pgm and map.yaml )
cloud combined

Conclusion

SV-ROS team has created a great solution for autonomous navigation and they won the IROS 2014 Kinect Navigation Contest. I'm glad that my algorithm RTAB-Map is part of it. It was really nice to meet all the guys of this team, they were very motivated, enthusiast and all their efforts were rewarded. This post has described technically the mapping approach used by the team and has shown some promising results using visual features for loop closure detection on a robot equipped only with a Kinect.