标签:
threshold( const CvArr* src, CvArr* dst, double threshold, double max_value, int threshold_type);
第三个参数表示阈值
第四个参数表示最大值。
第五个参数表示运算方法。
CV_THRESH_BINARY =0
CV_THRESH_BINARY_INV =1
CV_THRESH_TRUNC =2
CV_THRESH_TOZERO =3
CV_THRESH_TOZERO_INV =4
具体如图:
【例】
threshold(src,dst,5,255,0);
标签:
原文地址:http://www.cnblogs.com/xixixing/p/4982513.html