You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This contains common helper methods for both the OpenCV and SVD Camera calibration methods.
Running this will simply load the points from 3D.txt and 2D.txt and display them.
opencv.py
Performs camera calibration using OpenCV for the points from 3D.txt and 2D.txt.
svd.py
Performs camera calibration using SVD for the points from 3D.txt and 2D.txt.
both.py
Extra helper file to run both OpenCV and SVD camera calibration for the points from 3D.txt and 2D.txt at once.
Project 2
pixel_matching.py
Performs pixel matching by allowing you to load two images, calculating the fundamental matrix between them, and selecting a point in the left image to display the matching point in the right image.
By default, this will try to load Left.jpg and Right.jpg from the working directory.