I am trying to calibrate my camera from a single image without a chessboard. To this end, I used the following application (http://w3.impa.br/~zang/qtcalib/index.html) which uses Tsai's method to calibrate the camera.
The application returns intristic, rotation and translation matrix.
After that, I would like to calculate world coordinates from the 2d image. Thus, feeding my program with 2d coordinates (x,y) and the matrices (intristic, rotation, translation) I would like to get the 3D coordinates (X,Y,Z).
I followed the instruction of some relative threads (Get 3D coordinates from 2D image pixel if extrinsic and intrinsic parameters are known) but the results were not as I was expecting. Plus I have no idea where is my origin (0,0,0).
What am I doing wrong?