`
#include <Eigen/Dense>
#include <opencv2/core/eigen.hpp>
#include <opencv2/opencv.hpp>
using namespace cv;
using namespace std;
int main()
{
// opencv 旋转向量
cv::Vec3d rvec(1.0, 2.0, 3.0);
cv::Mat rotation_matrix;
cv::Rodrigues(rvec, rotation_matrix);
cout << " opencv方法" << endl;
cout << " " << rotation_matrix << endl;
cout << " ------------------- " << endl;
cout << " eigen方法 旋转矩阵 " << endl;
// eigen 旋转矩阵
Eigen::Matrix3f eigen_rotation;
cv::cv2eigen(rotation_matrix, eigen_rotation);
cout << " " << eigen_rotation << endl;
return 0;
}
本站资源均来自互联网,仅供研究学习,禁止违法使用和商用,产生法律纠纷本站概不负责!如果侵犯了您的权益请与我们联系!
转载请注明出处: 免费源码网-免费的源码资源网站 » openCV与eigen两种方法---旋转向量转旋转矩阵
发表评论 取消回复