OpenCV里面的CvMat和IplImage(容易混淆)

1、建立矩阵时,第一个参数为行数,第二个参数为列数。

CvMat* cvCreateMat( int rows, int cols, int type );

2、建立图像时,CvSize第一个参数为宽度,即列数;第二个参数为高度,即行数。这个和CvMat矩阵正好相反。

IplImage* cvCreateImage(CvSize size, int depth, int channels );

/* Constructor */

inline CvSize cvSize( int width, int height );

你可能感兴趣的:(OpenCV里面的CvMat和IplImage(容易混淆))