Reprojection Matrix Q

简介:

 Given the disparity d and 2D point (x, y) , we can derive the 3D depth using the 4-by-4 reprojection matrix Q as follows:

The reprojection matrix Q is given by:  

 

The parameter cx is the principal point x coordinate in the left image, cy is y coordinate, while cx' is the principal point x coordinate in the right image, f is the focal length in pixels, x T is the x of translation vector between the two cameras. 

本文转自博客园Grandyang的博客,原文链接:Reprojection Matrix Q,如需转载请自行联系原博主。

相关文章
|
索引
LeetCode 54. Spiral Matrix
给定m×n个元素的矩阵(m行,n列),以螺旋顺序[顺时针]返回矩阵的所有元素
67 0
LeetCode 54. Spiral Matrix
LeetCode 59. Spiral Matrix II
给定正整数n,以螺旋顺序生成填充有从1到n2的元素的方阵。
66 0
|
JSON Java Android开发
Matrix 之 ApkChecker 的使用
Matrix 之 ApkChecker 的使用
205 0
Matrix 之 ApkChecker 的使用
|
机器学习/深度学习 算法
Matrix Factorization
Matrix Factorization ①linearNetwork Hypothesis 机器学习的作用就是要从一堆数据中学习到学习到某种能力,然后用这种skill来预测未来的结果。
1015 0
|
Android开发
|
C++ 计算机视觉 Python
Finding distance between two curves
http://answers.opencv.org/question/129819/finding-distance-between-two-curves/ 问题: Hello, Im trying to add tangents along the curve in the image below, like the red lines in the second picture.
943 0
LeetCode - 54. Spiral Matrix
54. Spiral Matrix  Problem's Link  ---------------------------------------------------------------------------- Mean:  顺时针漩涡状打印二维数组的值.
881 0