ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
ROS only provides tools for working with ROS bag files. If you want to use someone else's data set, you'll probably need to write a custom reader. You can also do some searching online to see if anyone else has written a ROS library for reading this dataset.
OpenCV provides some good functions for loading individual images. If you're dealing with a lot of images, you may want to look for a filesystem library for locating the path to those images before you load them. boost::filesystem is good for this, but it can be a bit difficult to get started.
2 | No.2 Revision |
ROS only provides tools for working with ROS bag files. files.
If you want to use someone else's data set, you'll probably need to write a custom reader. reader for their dataset (this will not be related to rosbag in any way). You can also do some searching online to see if anyone else has written a ROS library for reading this dataset.
OpenCV provides some good functions for loading individual images. If you're dealing with a lot of images, you may want to look for a filesystem library for locating the path to those images before you load them. boost::filesystem is good for this, but it can be a bit difficult to get started.
3 | No.3 Revision |
ROS only provides tools for working with ROS bag files.
If you want to use someone else's data set, you'll probably need to write a custom reader for their dataset (this will not be related to rosbag in any way). You can also do some searching online to see if anyone else has written a ROS library for reading this dataset.
OpenCV provides some good functions for loading individual images. If you're dealing with a lot of images, you may want to look for a filesystem library for locating the path to those images before you load them. boost::filesystem is good for this, but it can be a bit difficult to get started.
A quick google search turns up a ROS package which appears to be able to play back the KITTI dataset: https://github.com/iralabdisco/kitti_player/wiki/Kitti-Player-(ROS-Node)