16.0cvGetSubRect()
该函数的定义是:
CvSize cvGetSubRect(//返回选择区域的尺寸
const CvArr* arr,//目标矩阵
CvArr* submat,//矩阵指针
CvRect rect//选择区域
);
其中CvRect见上一篇博客。
ps:切勿在使用submat前初始化变量,不然会造成内存溢出。
实例代码:
#include <cv.h>
#include <highgui.h>
int main()
{
IplImage *res;
int subX = 0;
int subY = 0;
res = cvLoadImage("a.jpg",-1);
subX = res->width / 2;
subY = res->height / 2;
CvMat *pMat = cvCreat