将数据从OpenCV矩阵发送到Matlab Engine,C++

Sending data from OpenCV matrix to Matlab Engine, C++

本文关键字:Matlab Engine C++ 数据 OpenCV      更新时间:2023-10-16

我正在使用C++和Matlab Engine将数据从OpenCV矩阵发送到matlab。我试图从列专业转换为行专业,但我对如何做到这一点感到非常困惑。我不明白如何处理 Matlab 指针 mxArray 并将数据放入引擎。

有没有人使用 OpenCV 和 matlab 来发送矩阵?我没有找到太多信息,我认为这是一个非常有趣的工具。欢迎任何帮助。

如果您创建了 matlab 引擎,我有一个函数可以工作。我所做的是为 matlab 引擎创建一个 SingleTone 模板:

我的标题如下所示:

/** Singletone class definition
  * 
  */
class MatlabWrapper
    {
    private:
        static MatlabWrapper *_theInstance; ///< Private instance of the class
        MatlabWrapper(){}           ///< Private Constructor
        static Engine *eng; 
    public:
        static MatlabWrapper *getInstance() ///< Get Instance public method
        {
            if(!_theInstance) _theInstance = new MatlabWrapper(); ///< If instance=NULL, create it
    return _theInstance;            ///< If instance exists, return instance
        }
    public:
    static void openEngine();               ///< Starts matlab engine.
    static void cvLoadMatrixToMatlab(const Mat& m, string name);
    };

我的 cpp:

#include <iostream>
using namespace std;
MatlabWrapper *MatlabWrapper::_theInstance = NULL;              ///< Initialize instance as NULL    
Engine *MatlabWrapper::eng=NULL;
void MatlabWrapper::openEngine()
{
        if (!(eng = engOpen(NULL))) 
        {
            cerr << "Can't start MATLAB engine" << endl;
            exit(-1);
        }       
}
void MatlabWrapper::cvLoadMatrixToMatlab(const Mat& m, const string name)
{
    int rows=m.rows;
    int cols=m.cols;    
    string text;
    mxArray *T=mxCreateDoubleMatrix(cols, rows, mxREAL);
    memcpy((char*)mxGetPr(T), (char*)m.data, rows*cols*sizeof(double));
    engPutVariable(eng, name.c_str(), T);
    text = name + "=" + name + "'";                    // Column major to row major
    engEvalString(eng, text.c_str());
    mxDestroyArray(T);
}

例如,当您想要发送矩阵时

Mat A = Mat::zeros(13, 1, CV_32FC1);

就这么简单:

MatlabWrapper::getInstance()->cvLoadMatrixToMatlab(A,"A");