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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
// 直线的投影矩阵K为单位阵 Eigen::Vector3d nc = line_c.head(3); double l_norm = nc(0) * nc(0) + nc(1) * nc(1); double l_sqrtnorm = sqrt( l_norm ); double l_trinorm = l_norm * l_sqrtnorm;
// 直线的投影矩阵K为单位阵
Eigen::Vector3d nc = line_c.head(3);
double l_norm = nc(0) * nc(0) + nc(1) * nc(1);
double l_sqrtnorm = sqrt( l_norm );
double l_trinorm = l_norm * l_sqrtnorm;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
// 直线的投影矩阵K为单位阵
Eigen::Vector3d nc = line_c.head(3);
double l_norm = nc(0) * nc(0) + nc(1) * nc(1);
double l_sqrtnorm = sqrt( l_norm );
double l_trinorm = l_norm * l_sqrtnorm;
The text was updated successfully, but these errors were encountered: