Skip to content

Commit

Permalink
progress on handeye calibration
Browse files Browse the repository at this point in the history
  • Loading branch information
Kazadhum committed Mar 27, 2024
1 parent e66982f commit 729c21b
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions atom_evaluation/scripts/other_calibrations/cv_handeye_calib.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,19 @@ def cvHandEyeCalibrate(objp, dataset, camera, pattern, number_of_corners):
tmp_undistorted_imgpoints_camera = cv2.undistortPoints(imgpoints_camera[i], K, D)
undistorted_imgpoints_camera.append(tmp_undistorted_imgpoints_camera)

#####################################
# Get transform from base to cam (Z)
#####################################

# Hard coded for now
tmp_transforms = dataset['collections']['006']['transforms']
base_T_cam = getTransform('base_link', 'rgb_world_link', tmp_transforms)
print(base_T_cam)
exit(0)

#####################################
# Get transform from


########################################################################

Expand Down

0 comments on commit 729c21b

Please sign in to comment.