在下面的:
http://cvlab.epfl.ch/files/content/sites/cvlab2/files/data/strechamvs/rathaus.tar.gz
有一个 README 文件说:
a 3D point X will be projected into the images in the usual way:
x = K[R^T|-R^T t]X
我记得 3D 到 2D 相机投影矩阵需要 R 旋转,而不是转置 R 矩阵,即我期望:
x = K[R|-R t]X
为什么它说 R^T 而不仅仅是 R ?