-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update calibration script #276
Comments
@hamyyy please provide pull requests instead of issues for things like this. At least I (as one of the people who can merge patches here) don't use this calibration because we changed the kinematic structure of our PR2. In your particular solution: I believe you should use |
My apologies @v4hn, I'll keep that in mind for next time. I'm relatively new to working on large git projects. I'll create a pr once ive managed to fix the calibration scripts. On the topic of calibration, the pr2_calibration packages don't seem to run on noetic (no surprise there). Im slowly getting things working on my PR2. Im curious how you calibrate the cameras to get the pointcloud aligned to the robot's environment |
At the moment we rely mostly on the robot_calibration framework for hand-eye calibration. In the future we might switch to ATOM. |
After this fix, things started to work a little better. Although i was experiencing errors in the following file:
pr2_robot/pr2_bringup/scripts/calibrate_pr2.py
Lines 315 to 316 in 80369f9
The error complains of a missing "Loader" argument to the yaml.load() function. The fix seems to be to add the argument
Loader=yaml.FullLoader
. Otherwise the script raises an error and calibration never occurs.more info about this error here
The text was updated successfully, but these errors were encountered: