OpenCV CV::Mat and Eigen::Matrix(OpenCV CV::Mat 和 Eigen::Matrix)
问题描述
是否有一种可逆的方法可以将 OpenCV cv::Mat
对象转换为 Eigen::Matrix
对象?
Is there a reversible way to convert an OpenCV cv::Mat
object to an Eigen::Matrix
?
例如,某种方式:
cv::Mat cvMat;
Eigen::Matrix eigMat;
camera->retrieve(cvMat);
// magic to convert cvMat to eigMat
// work on eigMat
// convert eigMat back to cvMat
imshow("Image", cvMat);
我已经尝试使用 cv2eigen
和 eigen2cv
,但是结果 cvMat
完全被破坏了,我不确定为什么.尺寸是正确的,但图形完全被破坏了,所以可能是每像素字节数或数据大小问题?
I've tried using cv2eigen
and eigen2cv
, but the resulting cvMat
is completely mangled and I'm not exactly sure why. The dimensions are correct, but the graphics are totally trashed, so possibly a bytes-per-pixel or datasize issue?
推荐答案
您应该考虑使用 Eigen::Map 包装 OpenCV 矩阵,以便直接由 Eigen SDK 使用.这允许您将 Eigen 中实现的几乎所有功能应用于 OpenCV 分配的矩阵
You should consider using Eigen::Map to wrap OpenCV matrices in order to be used directly by the Eigen SDK. This allows you to apply almost all functionalities implemented in Eigen on matrix allocated by OpenCV
特别是,您只需实例化一个 Eigen::Map 提供指向 cv::Mat 缓冲区的指针:
In particular you simply instantiate an Eigen::Map providing the pointer to the cv::Mat buffer:
//allocate memory for a 4x4 float matrix
cv::Mat cvT(4,4,CV_32FC1);
//directly use the buffer allocated by OpenCV
Eigen::Map<Matrix4f> eigenT( cvT.data() );
有关 Eigen::Map 的更多信息,请查看Eigen 教程:地图类
for more information on Eigen::Map take a look at Eigen Tutorial: Map Class
这篇关于OpenCV CV::Mat 和 Eigen::Matrix的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:OpenCV CV::Mat 和 Eigen::Matrix
基础教程推荐
- 设计字符串本地化的最佳方法 2022-01-01
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01
- C++,'if' 表达式中的变量声明 2021-01-01
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04
- 运算符重载的基本规则和习语是什么? 2022-10-31