cnr-isti-vclab / meshlab

The open source mesh processing system
http://www.meshlab.net
GNU General Public License v3.0
4.69k stars 820 forks source link

What does camera pose actually mean? #1312

Open KayChou opened 1 year ago

KayChou commented 1 year ago

When i export / import XML of camera view using meshlab, I got rotation matrix and translation matrix, but what's the format of this params? Is it c2w or w2c? I don't notice any description about this parameters.

luzpaz commented 1 year ago

typo in title dows should be does

RealityTracer commented 1 year ago

In CV, camera pose consitst of position and rotation. Position refers to the 3D location in which the camera take photos, and rotation refers to the attitude, which is represneted by three angles rotating about the 3 axes and can be denoted by an orthogonal matrix. In CG, position and rotation can be integerated into one 4X4 matrix by introducing Homogeneous Coordinates. you can relate to https://docs.opencv.org/2.4/modules/calib3d/doc/camera_calibration_and_3d_reconstruction.html for more details.

tsrobcvai commented 1 month ago

When i export / import XML of camera view using meshlab, I got rotation matrix and translation matrix, but what's the format of this params? Is it c2w or w2c? I don't notice any description about this parameters.

I also have this question, have you found the answer?