save ground truth with aruco tag (kinect, meta ports)
save ground truth with aruco tag (kinect, meta ports)
please check aruco_tag_saver_ros
/tags
, 466.jpg
is for reference on the table/tags/DICT_6X6_250
, 3
, 4
, 5
are for end-effector, as shown in this/tags/DICT_5X5_250
, 5x5_1000-7_8_9_10
are for target object
git clone https://github.com/ivalab/aruco_tag_saver.git
cd aruco_tag_saver
python camera_demo_arucoTag_5X5_250.py.py
2328
git clone https://github.com/ivalab/aruco_tag_saver.git
cd aruco_tag_saver
python camera_demo_arucoTag_kinect.py
s
to save rgb/depth/rawDepth imagest
or g
to tilt up or down kinecttmpPathGT_pose = ‘./data/graspPositions.txt’
tmpPathGT_ar = ‘./data/arucoPositions.txt’
tmpPathGT = ‘./data/graspPoseLabels.txt’
### change tilt range for kinect
1. `tilt.c`:
2. `glview.c` (optional, only if you want to use this example):
if (key == 'w') {
freenect_angle++;
if (freenect_angle > 30) {
freenect_angle = 30;
}
tilt_changed++;
}
…
if (key == ‘x’) {
freenect_angle—;
if (freenect_angle < -30) {
freenect_angle = -30;
}
tilt_changed++;
}
```
libfreenect.so
and libfreenect_sync.so
under /usr/lib/x86_64-linux-gnu/
libfreenect.so
and libfreenect_sync.so
and load libraries.so