-
Notifications
You must be signed in to change notification settings - Fork 32
Access Data Set Using ROS Python
Chethan M Parameshwara edited this page May 20, 2020
·
6 revisions
Download the dataset from here.
The dataset has the following folder structure.
MOD_Dataset
├── Text_Images
| ├── train_seq_room1_obj1
| | ├── masks.zip
| | ├── images.zip
| | ├── depthmaps.zip
| | ├── images.txt
| | ├── depthmaps.txt
| | ├── events.txt
| | ├── calib.txt
| | ├── camera_pose.txt
| | ├── obj_pose.zip
| | ├── obj_masks.zip
| | └── depthmaps.zip
| ├── train_seq_room1_obj2
| | └── Same structure as train_seq_room1_obj1
| ├── train_seq_room1_obj3
| | └── Same structure as train_seq_room1_obj1
| ├── train_seq_room3_obj1
| | └── Same structure as train_seq_room1_obj1
| ├── train_seq_room3_obj2
| | └── Same structure as train_seq_room1_obj1
| ├── train_seq_room3_obj3
| | └── Same structure as train_seq_room1_obj1
| └── test_seq
| └── Same structure as train_seq_room1_obj1
└── Bag_Files
├── train_seq_room1_obj1.bag
├── train_seq_room1_obj2.bag
├── train_seq_room1_obj3.bag
├── train_seq_room3_obj1.bag
├── train_seq_room3_obj2.bag
├── train_seq_room3_obj3.bag
└── test_seq.bag
- The images are in
.pngformat andimages.txtis a tab separated file with each row containingtime \t ImageNameinformation. -
depthmaps.txthas the same format asimages.txt. -
events.txtis a space separated file with each row containinytime loc_x loc_y polarity. -
calib.txtcontains the camera calibration data asfx fy cx cy k1 k2 r1 r2(focal length in x, focal length in y, principle point in x, principle point in y, four rad-tan distrotion coefficients). - The Depthmaps are in
.exrformat and can be loaded using the OpenEXR package. - Note - Object masks, Object poses and Camera poses are only available in Text_Image folder.