https://github.com/koide3/st_handeye_graph
General hand-eye calibration based on reprojection error minimization and pose graph optimization
https://github.com/koide3/st_handeye_graph
calibration cross-platform hand-eye hand-eye-calibration reprojection-error-minimization x-ray
Last synced: 6 months ago
JSON representation
General hand-eye calibration based on reprojection error minimization and pose graph optimization
- Host: GitHub
- URL: https://github.com/koide3/st_handeye_graph
- Owner: koide3
- Created: 2018-09-05T18:13:56.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-10-10T17:16:09.000Z (almost 2 years ago)
- Last Synced: 2025-03-21T22:21:54.710Z (7 months ago)
- Topics: calibration, cross-platform, hand-eye, hand-eye-calibration, reprojection-error-minimization, x-ray
- Language: C++
- Homepage:
- Size: 32.2 KB
- Stars: 66
- Watchers: 2
- Forks: 27
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## st_handeye_graph
This package provides a general hand-eye calibration method which can be applied to pinhole and source-detector camera models.
### Description
Unlike usual hand-eye calibration techniques, this method directly takes the images of the calibration pattern (like chessboard) and estimates the hand-eye transformation and the pattern pose such that the projection error of the pattern is minimized. Since it doesn't rely on algorithms dedicated for pinhole cameras, such as PnP algorithms, it can be easily adapted to different camera model by changing only the projection model.
### Dependencies
- g2o
- VISP
- handeye_calib_camodocal (optional, for only evaluation)### Usage
Include "st_handeye/st_handeye.hpp" and call "st_handeye::spatial_calibration_graph()". See "st_handeye.hpp" for the details.
### Reproduce figures
```bash
git clone https://github.com/koide3/st_handeye_graph.git
git clone https://bitbucket.org/koide3/st_handeye_eval.gitmkdir st_handeye_graph/build
cd st_handeye_graph/build
cmake .. -DCMAKE_BUILD_TYPE=Release
make -j4cd ../scripts
# run simulations and plot figures
./run_simulation.sh# run calibration on real data and perform 3d reconstruction
./run_calibration.sh# see the reconstructed point cloud
pcl_viewer data/points_3d_graph.pcd
```### Paper
Kenji Koide and Emanuele Menegatti, General Hand-Eye Calibration based on Reprojection Error Minimization, IEEE Robotics and Automation Letters/ICRA2019 [[link](https://ieeexplore.ieee.org/document/8616862)].## Contact
Kenji Koide, Intelligent Autonomous Systems Laboratory, University of Padova, Italy.
koide@dei.unipd.it