... | ... | @@ -11,7 +11,7 @@ where **K** is the camera matrix from [there](find_camera_mtx), [**R**|t] is tra |
|
|
Picture is borrowed from [there](http://docs.opencv.org/2.4/modules/calib3d/doc/camera_calibration_and_3d_reconstruction.html)
|
|
|
|
|
|
|
|
|
### Finding points on laser plane
|
|
|
### Inverse transformation of pinhole camera equation
|
|
|
The equation for pinhole camera is under-determined so we have to find one more condition to estimate the position  using only projection coordinates . We can use chessboard plane, because OpenCV can find the transformation between those coordinates and camera coordinates. Furthermore, we can say that in chessboard coordinates all points are laying on plane described as z = 0. We are able to transform this plane to camera coordinates like:
|
|
|
|
|
|
<img src="http://mathurl.com/gw8dwdp.png" /> ,
|
... | ... | @@ -33,9 +33,10 @@ Thereafter, we can make inverse transformation from 
|
|
|
 |