7

我正在使用 C++ 和 Matlab 引擎将数据从 OpenCV 矩阵发送到 matlab。我试图从列专业转换为行专业,但我真的很困惑如何做到这一点。我无法理解如何处理 Matlab 指针 mxArray 并将数据放入引擎。

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

4

1 回答 1

7

如果您创建了 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);
    };

我的cp:

#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");
于 2012-06-04T15:46:33.600 回答