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