CvMat 的几种常用类型对应的int值

如果矩阵为单通道

 

 

#define CV_8U   0

#define CV_8S   1

#define CV_16U  2

#define CV_16S  3

#define CV_32S  4

#define CV_32F  5

#define CV_64F  6

#define CV_USRTYPE1 7

 

 

非单通道需要再查文件:cxcore/include/cxtypes.h

 

http://frammworks.beans.ath.cx/trac/browser/tr/ThirdParty/OpenCV/cxcore/include/cxtypes.h

你可能感兴趣的:(CvMat 的几种常用类型对应的int值)