We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PnP_Solver/pnp_solver.cpp
Lines 530 to 534 in 835e358
The text was updated successfully, but these errors were encountered:
L ( i, 0 ) = S1_T * S1; L ( i, 1 ) = 2 * S1_T * S2; L ( i, 2 ) = S2_T * S2; L ( i, 3 ) = 2 * S1_T * S3; L ( i, 4 ) = 2 * S2_T * S3; L ( i, 5 ) = S3_T * S3; L ( i, 6 ) = 2 * S1_T * S4; L ( i, 7 ) = 2 * S2_T * S4; L ( i, 8 ) = 2 * S3_T * S4; L ( i, 9 ) = S4_T * S4; 在构造L的时候已经乘以2了。
L ( i, 0 ) = S1_T * S1; L ( i, 1 ) = 2 * S1_T * S2; L ( i, 2 ) = S2_T * S2; L ( i, 3 ) = 2 * S1_T * S3; L ( i, 4 ) = 2 * S2_T * S3; L ( i, 5 ) = S3_T * S3; L ( i, 6 ) = 2 * S1_T * S4; L ( i, 7 ) = 2 * S2_T * S4; L ( i, 8 ) = 2 * S3_T * S4; L ( i, 9 ) = S4_T * S4;
Sorry, something went wrong.
No branches or pull requests
PnP_Solver/pnp_solver.cpp
Lines 530 to 534 in 835e358
作者您好,我从您的知乎[PnP]PnP问题之EPnP解法这篇文章过来的,关于使用Gauss-Newton求解文章中公式19,您在文章中构造的雅克比矩阵J的形式如下:
但是似乎在您给出的代码中,关于J矩阵中的各个系数似乎并不全为2,似乎是下面这种形式:
哪一种写法是正确的呢?
The text was updated successfully, but these errors were encountered: