码迷,mamicode.com
首页 > 其他好文 > 详细

matlab调用opencv出错总结

时间:2015-10-27 17:07:51      阅读:342      评论:0      收藏:0      [点我收藏+]

标签:

 本人写的matlab调用opencv的代码:

1.配置:严格按照之前配置的文章进行配置

2.编译

3运行

技术分享

运行时提示错误

代码的功能:matlab传入一组数组 ,利用groupRectangles(dst, 1, 0.2);进行窗口融合。再将融合的数组传到matlab

//矩阵的传入与传出
//20151021矩阵[1 3 50 100;3 5 50 100;5 7 50 100;7 9 50 100;9 11 50 100]出错,得进行调试
//opencv 的结果为[5 7 50 100]
//[2 4 50 100;4 6 50 100;6 6 50 100;8 10 50 100;10 12 50 100] 结果 6 8 50 100

#include "mex.h" 
#include <iostream>
#include <vector>
#include <opencv2/opencv.hpp>
using namespace cv;
using namespace std;
    void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[]){
        //输入,输入进来的矩阵一定是n×4,不能为空
        double *inMatrix; 
        inMatrix = mxGetPr(prhs[0]); //得到输入矩阵的第一个元素的指针
        int mrows = mxGetM(prhs[0]);   //获得矩阵的行
        int ncols = mxGetN(prhs[0]);   //获得矩阵的列,

        vector<Rect> dst;
        dst.clear();
        Rect tempt;
        int dst_size;
        printf("%d_%d\n", mrows, ncols);  //打印行和列

        for(int i = 0; i < mrows; i++)
        {
            tempt.x=inMatrix [0 * mrows + i];//[当前列*行数+当前行]
            tempt.y=inMatrix [1* mrows + i];
            tempt.width=inMatrix [2* mrows + i];
            tempt.height=inMatrix [3 * mrows + i];
            dst.push_back(tempt);
        }
    //    printf("oriSize: %d\n",dst.size());  
        //cout<<"oriSize:"<<dst.size()<<endl;
        groupRectangles(dst, 1, 0.2);
        dst_size=dst.size();//当前行数
          printf("curSize: %d\n",dst.size());  
        //cout<<"curSize:"<<dst_size<<endl;

        //输出
        plhs[0] = mxCreateDoubleMatrix(dst_size,4, mxREAL);  //输出,每一列为一个窗口,行数=维数,列数=窗口数
        double *outMatrix;
        outMatrix = mxGetPr(plhs[0]);
        for(int i = 0; i < dst_size; i++)
        {
            outMatrix[0*dst_size+i ]=dst[i].x;
            outMatrix[1*dst_size+i ]=dst[i].y;
            outMatrix[2*dst_size+i ]=dst[i].width;
            outMatrix[3*dst_size+i ]=dst[i].height;
        }

}

解决步骤:

一.在opencv中新建一个

技术分享

技术分享

技术分享

二、属性配置

右键属性

技术分享

技术分享

技术分享

技术分享

 

3.在test.def中输入

LIBRARY test
EXPORTS mexFunction

技术分享

在matlab中打开该文件夹运行。

将运行得到的结果 .mexw64  即可执行文件放到要运行的matlab底下即可  。

技术分享

 

 

技术分享

 

matlab调用opencv出错总结

标签:

原文地址:http://www.cnblogs.com/realkate1/p/4914484.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!