From 503e63e990a09e92d385d099e6208915723eeb3b Mon Sep 17 00:00:00 2001 From: Bimalka Piyaruwan Thalagala Date: Sat, 5 Mar 2022 15:12:31 +0530 Subject: [PATCH] Update README.md --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index 3dfccb2..ab3a15e 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,19 @@ + +### [`get3Dpoint.py`](https://github.com/bimalka98/Camera-Calibration-and-Backprojection/blob/M-CAIT-2013/get3Dpoint.py) script includes the implemetation of the mentioned paper to, backproject image coordinates back to the real world. When the equation of the plane where the real world objects lies, with respect to the real world coordinate system is known. + +> **Get equation of a plane is not a big deal when, a point lies on the plane and the normal vector to that plane are known.** 😉 + +# Scripts + +|Script|Description| +|:---|:---| +|**captureImages.py**|*This script captures images from the camera and saves them in the specified directory.*| +|**calibrateCamera.py**|*This script calibrates the camera and saves the calibration parameters in the specified yaml file.*| +|**2Dto3D.py**|*This script verifies the obtatined parameters through camera calibration.*| +|**get3Dpoint.py**|*This script backproject image coordinate back to the real world coordinate system through the method specified in the paper.*| + +--- + # [Camera Calibration using OpenCV](https://docs.opencv.org/3.4/dc/dbb/tutorial_py_calibration.html) ***Text copied from OpenCV documentation***