Reputation: 1
Trying to reconstruct 3D-coordinates of point on plane from 2D-Pixel-Coordinates in a Camera Picture, using a extrinsic and intrinsic camera parameters from "Camera Calibration Toolbox for Matlab".
intrinsic parameters: Focal Length: fc = [ 1017.21523 1012.54901 ] Principal point: cc = [ 319.50000 239.50000 ]
extrinsic parameters: Translation vector: Tc_ext = [ 4.409693 -74.116018 393.057934 ] Rotation matrix: Rc_ext = [ -0.083632 0.991715 -0.097501 0.832136 0.015674 -0.554350 -0.548230 -0.127495 -0.826553 ]
Can anybody help how to get 3d-coordinates of point on plane from 2d from camera image?
Upvotes: 0
Views: 1501
Reputation: 11785
There are 4 cases to consider, in order of increasing complexity. The basic goal is to locate in space the plane of interest. After you have it, you can just intersect it with the ray that back-projects your pixel and thus obtain the solution.
Upvotes: 2