opencv 中如果 你单独定义了一个Mat a;此时是没有给a分配内存空间的
但是如果使用height ,width ,dataType类似的初始化,就会分配内存空间,比如
Mat dst(pFrameInfo->nHeight,pFrameInfo->nWidth,CV_8UC3);//这里nHeight为720,nWidth为1280,8UC3表示8bit uchar 无符号类型,3通道值就会分配内存空间,如下图也可以指定Mat的data指针指向某一个地方Mat src(pFrameInfo->nHeight + pFrameInfo->nHeight/2,pFrameInfo->nWidth,CV_8UC1,(uchar*)pBuf);