尝试混合以下代码:
/*
* Usage:
* img = IplImage2mxArray( cvImgPtr, releaseFlag );
*/
void mexFunction( int nout, mxArray* pout[], int nin, const mxArray* pin[]) {
if ( nin != 2 )
mexErrMsgTxt("wrong number of inputs");
if ( nout != 1 )
mexErrMsgTxt("wrong number of outputs");
IplImage* cvImg = (IplImage*)mxGetData(pin[0]); // get the pointer
// allocate the output
mwSize imgDims[3] = {cvImg->height, cvImg->width, cvImg->nChannels};
pout[0] = mxCreateNumericArray( 3, imgDims, mxDOUBLE_CLASS, mxREAL );
if ( pout[0] == NULL )
mexErrMsgTxt("out of memeory");
double* imgP = mxGetPr(pout[0]);
double divVal = pow(2.0, cvImg->depth) - 1;
double releaseFlag = mxGetScalar( pin[1] );
for ( int x = 0 ; x < cvImg->width; x++ ) {
for ( int y = 0 ; y < cvImg->height; y++ ) {
CvScalar s = cvGet2D(cvImg, y, x);
for (int c = 0; c < cvImg->nChannels; c++) {
imgP[ y + x * cvImg->height + c * cvImg->height * cvImg->width ] = s.val[c] / divVal;
}
}
}
if ( releaseFlag != 0 ) {
cvReleaseImage( &cvImg );
}
}
你最终会得到一个函数(mex)IplImage2mxArray,在 Matlab 中使用它:
>> cvImg = calllib('highgui210','cvQueryFrame',cvCapture);
>> img = IplImage2mxArray( cvImg, false ); % no cvReleaseImage after cvQueryFrame
由于内部 opencv 表示,img 的通道可能会被置换(RGB 的 BGR 插入)。另请注意,img 可能包含四个通道 - 一个额外的 alpha 通道。
-沙伊