All Projects → ftdlyc → Libcbdetect

ftdlyc / Libcbdetect

Licence: gpl-3.0
automatic sub-pixel checkerboard / chessboard / deltille pattern detection

Projects that are alternatives of or similar to Libcbdetect

Kalibr
The Kalibr visual-inertial calibration toolbox
Stars: ✭ 2,410 (+2702.33%)
Mutual labels:  camera, calibration
Laser Camera Calibration Toolbox
A Laser-Camera Calibration Toolbox extending from that at http://www.cs.cmu.edu/~ranjith/lcct.html
Stars: ✭ 99 (+15.12%)
Mutual labels:  camera, calibration
Handeye calib camodocal
Easy to use and accurate hand eye calibration which has been working reliably for years (2016-present) with kinect, kinectv2, rgbd cameras, optical trackers, and several robots including the ur5 and kuka iiwa.
Stars: ✭ 364 (+323.26%)
Mutual labels:  camera, calibration
Stereo Vision
This program has been developed as part of a project at the University of Karlsruhe in Germany. The final purpose of the algorithm is to measure the distance to an object by combining two webcams and use them as a Stereo Camera.
Stars: ✭ 160 (+86.05%)
Mutual labels:  camera, calibration
Ilcc
Intensity-based_Lidar_Camera_Calibration
Stars: ✭ 231 (+168.6%)
Mutual labels:  camera, calibration
Easy handeye
Automated, hardware-independent Hand-Eye Calibration
Stars: ✭ 355 (+312.79%)
Mutual labels:  camera, calibration
Lidar camera calibration
ROS package to find a rigid-body transformation between a LiDAR and a camera for "LiDAR-Camera Calibration using 3D-3D Point correspondences"
Stars: ✭ 734 (+753.49%)
Mutual labels:  camera, calibration
Testing Video
Generator of test video files for testing your media playback devices and calibrate TV sets
Stars: ✭ 70 (-18.6%)
Mutual labels:  calibration
Urbannavdataset
UrbanNav: an Open-Sourcing Localization Data Collected in Asian Urban Canyons, Including Tokyo and Hong Kong
Stars: ✭ 79 (-8.14%)
Mutual labels:  camera
Kontax Cam
Instant camera hybrid with multiple effects and filters written in Swift.
Stars: ✭ 69 (-19.77%)
Mutual labels:  camera
Mgs Camera
Unity plugin for control camera in scene.
Stars: ✭ 66 (-23.26%)
Mutual labels:  camera
Mads.jl
MADS: Model Analysis & Decision Support
Stars: ✭ 71 (-17.44%)
Mutual labels:  calibration
Opendatacam
An open source tool to quantify the world
Stars: ✭ 1,214 (+1311.63%)
Mutual labels:  camera
Nativescript Yoonit Camera
The most advanced and modern NativeScript Camera module for Android and iOS with a lot of awesome features
Stars: ✭ 69 (-19.77%)
Mutual labels:  camera
Barcodescanner.xf
Barcode Scanner using GoogleVision API for Xamarin Form
Stars: ✭ 82 (-4.65%)
Mutual labels:  camera
Picker
Picker - A CameraX based WhatsApp Style Image-Video Picker
Stars: ✭ 69 (-19.77%)
Mutual labels:  camera
Eviacam
webcam based mouse emulator
Stars: ✭ 82 (-4.65%)
Mutual labels:  camera
Thing Translator
📷 🗣 Point your camera at things to hear how to say them in a different language
Stars: ✭ 1,231 (+1331.4%)
Mutual labels:  camera
Pktriggercord
Remote control for Pentax DSLR cameras
Stars: ✭ 76 (-11.63%)
Mutual labels:  camera
Rpicam
Raspberry PI Surveillance Automation
Stars: ✭ 77 (-10.47%)
Mutual labels:  camera

Libcbdetect

  • Unofficial implemention of libcbdetect in C++.
  • Deltille detector.

Libdetect is a fully automatic sub-pixel checkerboard / chessboard / deltille pattern detection. The algorithm autmatically extracts corners to sub-pixel accuracy and combines them to (rectangular) checkerboards / chessboard-like / deltille patterns.

My calibration tool: Libcalib

Require

  • C++ 14
  • Opencv >= 3.0

Example

using namespace cbdetect;
cv::Mat img = cv::imread("image.bmp", cv::IMREAD_COLOR);
Params params;
find_corners(img, corners, params);
plot_corners(img, corners);
boards_from_corners(corners, boards);
plot_boards(img, corners, boards);

image
image
image

Reference Papers

[1] Geiger, A., Moosmann, F., Car, Ö., & Schuster, B. (2012, May). Automatic camera and range sensor calibration using a single shot. In Robotics and Automation (ICRA), 2012 IEEE International Conference on (pp. 3936-3943). IEEE.
[2] Schönbein, M., Strauß, T., & Geiger, A. (2014, May). Calibrating and centering quasi-central catadioptric cameras. In Robotics and Automation (ICRA), 2014 IEEE International Conference on (pp. 4443-4450). IEEE.
[3] Placht, S., Fürsattel, P., Mengue, E. A., Hofmann, H., Schaller, C., Balda, M., & Angelopoulou, E. (2014, September). Rochade: Robust checkerboard advanced detection for camera calibration. In European Conference on Computer Vision (pp. 766-779). Springer, Cham.
[4] Ha, H., Perdoch, M., Alismail, H., Kweon, I. S., & Sheikh, Y. (2017, October). Deltille Grids for Geometric Camera Calibration. In 2017 IEEE International Conference on Computer Vision (ICCV) (pp. 5354-5362). IEEE.
[5] Duda, A., & Frese, U. (2018, September). Accurate Detection and Localization of Checkerboard Corners for Calibration. In British Machine Vision Conference (BMCV), 2018.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].