Skip to content

Commit 07fd936

Browse files
committed
Fix bug in converting camera frame name
Closes qcr/benchbot#68.
1 parent 9e5ff9c commit 07fd936

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/robot_callbacks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def create_pose_list(data, controller):
190190

191191
# TODO REMOVE HACK FOR FIXING CAMERA NAME!!!
192192
return {
193-
'camera' if 'left_camera' in k else k: {
193+
'camera' if 'camera_left' in k else k: {
194194
'parent_frame': controller.config['robot']['global_frame'],
195195
'translation_xyz': v[0:3, 3],
196196
'rotation_rpy': sp.rpy_from_SE3(v),

0 commit comments

Comments
 (0)