You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Firstly, I'd like to express my gratitude for making the DROID dataset and associated code available to the open-source community.
While analyzing the Raw dataset, I observed a potential discrepancy between the gripper pose positions and the associated calibrated cameras. Below, I have included the preprocessing code for both the gripper position and camera extrinsics. Additionally, I've attached point-cloud images from one episode viewed from various angles, where the yellow indicates the camera, green denotes the current gripper position, and red marks the next gripper state change position:
# Preprocessing of the gripper positionrobot_pose=np.zeros(8)
dataset_robot_pose=trajectory['action']['cartesian_position'][t_index]
robot_pose[:3] =dataset_robot_pose[:3]
robot_pose[3:7] =R.from_euler("xyz", dataset_robot_pose[3:]).as_quat()
robot_pose[7] =False# Preprocessing of the extrinsicspos=extrinsics[0:3]
rot_mat=R.from_euler("xyz", extrinsics[3:6]).as_matrix()
extrinsics=np.zeros((4, 4))
extrinsics[:3,:3] =rot_matextrinsics[:3,3] =posextrinsics[3,3] =1.0extrinsics=np.linalg.inv(extrinsics)
Could you please review this? Any guidance on whether this is an error in the dataset or a misunderstanding on my part would be greatly appreciated.
The text was updated successfully, but these errors were encountered:
Firstly, I'd like to express my gratitude for making the DROID dataset and associated code available to the open-source community.
While analyzing the Raw dataset, I observed a potential discrepancy between the gripper pose positions and the associated calibrated cameras. Below, I have included the preprocessing code for both the gripper position and camera extrinsics. Additionally, I've attached point-cloud images from one episode viewed from various angles, where the yellow indicates the camera, green denotes the current gripper position, and red marks the next gripper state change position:
Could you please review this? Any guidance on whether this is an error in the dataset or a misunderstanding on my part would be greatly appreciated.
The text was updated successfully, but these errors were encountered: