摘要: 这里使用Canny函数进行边缘检测 函数定义: void cvCanny( const CvArr* image,CvArr* edges,double threshold1,double threshold2, int aperture_size=3 ); 参数说明: image //输入单通道图 阅读全文
posted @ 2016-02-28 15:34 chan21252 阅读(557) 评论(0) 推荐(0) 编辑
摘要: assert宏的原型定义在<assert.h>中,其作用是如果它的条件返回错误,则终止程序执行,原型定义: #include <assert.h> void assert( int expression ); assert的作用是现计算表达式 expression ,如果其值为false(即为0), 阅读全文
posted @ 2016-02-28 10:10 chan21252 阅读(200) 评论(0) 推荐(0) 编辑