摘要:
OpenCV里面用到了很多图像相关的数据结构,熟练掌握它们是学习图像的基础。1、IplImageIplImageIplImageIPL 图像头typedef struct _IplImage{int nSize; /* IplImage大小 */int ID; /* 版本 (=0)*/int nChannels; /* 大多数OPENCV函数支持1,2,3 或 4 个通道 */int alphaChannel; /* 被OpenCV忽略 */int depth; /* 像素的位深度: IPL_DEPTH_8U, IPL_DEPTH_8S, IPL_DEPTH_16U,IPL_DEPTH_16S 阅读全文
摘要:
最近这两天一直在研究命令行参数的编译,现代吗如下:#include #include #include IplImage *Igray = 0, *It = 0, *Iat;int main( int argc, char** argv ){ //输入命令行 double threshold = (double)atof( argv[1] ); //convert string to double int threshold_type = atoi( argv[2] ) ? CV_THRESH_BINARY : CV_THRESH_BINARY_INV; int adaptive_method 阅读全文