All Projects → sourishg → Fisheye Stereo Calibration

sourishg / Fisheye Stereo Calibration

📷 📷 Fisheye stereo calibration using OpenCV and C++

Labels

Projects that are alternatives of or similar to Fisheye Stereo Calibration

Imageminilab
opencv-python 应用
Stars: ✭ 68 (-20%)
Mutual labels:  opencv
Opensource
An Open Source video surveillance management system for people making this world a safer place.
Stars: ✭ 75 (-11.76%)
Mutual labels:  opencv
Vehicle counting hog svm
Vehicle detection, tracking and counting by SVM is trained with HOG features using OpenCV on c++.
Stars: ✭ 82 (-3.53%)
Mutual labels:  opencv
Ftcvision
Computer Vision library for FIRST Tech Challenge
Stars: ✭ 73 (-14.12%)
Mutual labels:  opencv
Pyscenedetect
🎥 Python and OpenCV-based scene cut/transition detection program & library.
Stars: ✭ 1,203 (+1315.29%)
Mutual labels:  opencv
Computervision Projects
Some simple computer vision implementations using OpenCV
Stars: ✭ 79 (-7.06%)
Mutual labels:  opencv
Openframeworks
openFrameworks is a community-developed cross platform toolkit for creative coding in C++.
Stars: ✭ 8,652 (+10078.82%)
Mutual labels:  opencv
Graphicsprogramming
Demos related to OpenGL, Qt/QML, OpenCV and other X technologies.
Stars: ✭ 83 (-2.35%)
Mutual labels:  opencv
Object detector app
Real-Time Object Recognition App with Tensorflow and OpenCV
Stars: ✭ 1,210 (+1323.53%)
Mutual labels:  opencv
Panoramic Image Stitching Using Invariant Features
Given a number of input images, concatenate all images to produce a panoramic image using invariant features.
Stars: ✭ 81 (-4.71%)
Mutual labels:  opencv
Qt 5 And Opencv 4 Computer Vision Projects
Qt 5 and OpenCV 4 Computer Vision Projects, published by Packt
Stars: ✭ 72 (-15.29%)
Mutual labels:  opencv
Shawn pose estimation by opencv
This is my initial experiments on pose estimation using opencv.More details:http://www.cnblogs.com/singlex/p/pose_estimation_0.html
Stars: ✭ 75 (-11.76%)
Mutual labels:  opencv
Ev3dev Lang Java
A project to learn Java and create software for Mindstorms Robots using hardware supported by EV3Dev & the LeJOS way.
Stars: ✭ 79 (-7.06%)
Mutual labels:  opencv
Opencv Android Object Detection
This is sample code for object detection using OpenCV on android
Stars: ✭ 70 (-17.65%)
Mutual labels:  opencv
Litiv
C++ implementation pool for computer vision R&D projects.
Stars: ✭ 82 (-3.53%)
Mutual labels:  opencv
Faceai
一款入门级的人脸、视频、文字检测以及识别的项目.
Stars: ✭ 9,207 (+10731.76%)
Mutual labels:  opencv
Phormatics
Using A.I. and computer vision to build a virtual personal fitness trainer. (Most Startup-Viable Hack - HackNYU2018)
Stars: ✭ 79 (-7.06%)
Mutual labels:  opencv
Sudoku Py
An augmented reality sudoku solver using OpenCV
Stars: ✭ 85 (+0%)
Mutual labels:  opencv
Mobilenet Ssd
MobileNet-SSD(MobileNetSSD) + Neural Compute Stick(NCS) Faster than YoloV2 + Explosion speed by RaspberryPi · Multiple moving object detection with high accuracy.
Stars: ✭ 84 (-1.18%)
Mutual labels:  opencv
Handy
Hand detection software built with OpenCV.
Stars: ✭ 81 (-4.71%)
Mutual labels:  opencv

OpenCV C++ Stereo Fisheye Calibration

This contains a source file to calibrate a stereo system comprising of fisheye lenses. It calibrates the extrinsics and the intrinsics of the cameras without any initial guesses. If you are looking for stereo calibration with lenses which follow the pinhole model check here.

Dependencies

  • OpenCV
  • popt

Compilation

Compile all the files using the following commands.

mkdir build && cd build
cmake ..
make

Make sure your are in the build folder to run the executables.

Data

Some sample calibration images are stored in the imgs folder.

Running calibration

Run the executable with the following command

./calibrate -w [board_width] -h [board_height] -s [square_size] -n [num_imgs] -d [img_dir] -l [left_img_prefix] -r [right_img_prefix] -o [calib_file]

For example if you use the images in the imgs folder run the following command

./calibrate -w 9 -h 6 -s 0.02423 -n 29 -d ../imgs/ -l left -r right -o cam_stereo.yml
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].