I have made a camera calibration and I have obtained the matices: Here the intrinsic:
<?xml version="1.0"?>
<opencv_storage>
<Intrinsics type_id="opencv-matrix">
<rows>3</rows>
<cols>3</cols>
<dt>f</dt>
<data>
6.59121826e+002 0. 2.09667786e+002 0. 6.98561340e+002
1.49071167e+002 0. 0. 1.</data></Intrinsics>
</opencv_storage>
And here the distortion one:
<?xml version="1.0"?>
<opencv_storage>
<Distortion type_id="opencv-matrix">
<rows>4</rows>
<cols>1</cols>
<dt>f</dt>
<data>
1.11172847e-001 -1.00810878e-001 -1.00857615e-001 -8.45640600e-002</data></Distortion>
</opencv_storage>
After such a process, I am supposed to find for a point A(u,v)
in image plane its coordination in my cartesian referee R(X,Y,Z)
.
Note: The Z
axis is parallel to optical axis, X
axis is also parallel to u
axis and so on for Y
and v
.
I followed this online turorial but I couldn't compute X
, Y
and Z
.
Any help. Thanks in advance.