Get 3D coordinates from 2D image pixel if extrinsic and intrinsic parameters are known(如果已知外在和内在参数,则从 2D 图像像素获取 3D 坐标)
问题描述
我正在使用 tsai algo 进行相机校准.我得到了内在和外在矩阵,但如何从该信息重建 3D 坐标?
I am doing camera calibration from tsai algo. I got intrensic and extrinsic matrix, but how can I reconstruct the 3D coordinates from that inormation?
1) 我可以使用高斯消元法找到 X、Y、Z、W,然后点将是 X/W 、 Y/W 、 Z/W 作为齐次系统.
1) I can use Gaussian Elimination for find X,Y,Z,W and then points will be X/W , Y/W , Z/W as homogeneous system.
2) 我可以使用OpenCV 文档方法:
2) I can use the
OpenCV documentation approach:
据我所知 u, v, R , t ,我可以计算 X,Y,Z.
as I know u, v, R , t , I can compute X,Y,Z.
然而,这两种方法最终都会得到不正确的不同结果.
However both methods end up in different results that are not correct.
我做错了什么?
推荐答案
如果您有外部参数,那么您就拥有了一切.这意味着您可以从外在变量(也称为 CameraPose)获得 Homography.Pose是一个3x4的矩阵,homography是一个3x3的矩阵,H定义为
If you got extrinsic parameters then you got everything. That means that you can have Homography from the extrinsics (also called CameraPose). Pose is a 3x4 matrix, homography is a 3x3 matrix, H defined as
H = K*[r1, r2, t], //eqn 8.1, Hartley and Zisserman
其中K是相机内在矩阵,r1和r2是旋转矩阵的前两列,R强>;t 是平移向量.
with K being the camera intrinsic matrix, r1 and r2 being the first two columns of the rotation matrix, R; t is the translation vector.
然后将所有内容除以 t3 归一化.
Then normalize dividing everything by t3.
r3 列会发生什么,我们不使用它吗?不,因为它是多余的,因为它是姿势的前 2 列的叉积.
What happens to column r3, don't we use it? No, because it is redundant as it is the cross-product of the 2 first columns of pose.
既然你有了单应性,就投影点.你的 2d 点是 x,y.将它们添加为 z=1,因此它们现在是 3d.按如下方式对其进行投影:
Now that you have homography, project the points. Your 2d points are x,y. Add them a z=1, so they are now 3d. Project them as follows:
p = [x y 1];
projection = H * p; //project
projnorm = projection / p(z); //normalize
希望这会有所帮助.
这篇关于如果已知外在和内在参数,则从 2D 图像像素获取 3D 坐标的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如果已知外在和内在参数,则从 2D 图像像素获取
基础教程推荐
- 为什么 typeid.name() 使用 GCC 返回奇怪的字符以及如 2022-09-16
- 如果我为无符号变量分配负值会发生什么? 2022-01-01
- 为什么派生模板类不能访问基模板类的标识符? 2021-01-01
- GDB 显示调用堆栈上函数地址的当前编译二进制文 2022-09-05
- CString 到 char* 2021-01-01
- 非静态 const 成员,不能使用默认赋值运算符 2022-10-09
- 初始化列表*参数*评估顺序 2021-01-01
- 通过引用传递 C++ 迭代器有什么问题? 2022-01-01
- 我应该对 C++ 中的成员变量和函数参数使用相同的名称吗? 2021-01-01
- 为什么 RegOpenKeyEx() 在 Vista 64 位上返回错误代码 2021-01-01
