OpenCV对数组元素进行固定阀值操作函数Threshold

函数构造:

void cvThreshold( const CvArr* src, CvArr* dst, double threshold,double max_value, int threshold_type );
src
原始数組 (单通道 , 8-bit of 32-bit 浮点数).
dst
输出数組,必须与src 的类型一致,或者为8-bit.
threshold
阀值
max_value
使用 CV_THRESH_BINARY 和 CV_THRESH_BINARY_INV 的最大值.
threshold_type
阀值类型

函数 cvThreshold 对单通道数組应用固定阈值操作。该函数的典型应用是对灰度图像进行阈值操作得到二值图像。(cvCmpS 也可以达到此目的) 或者是去掉噪声,例如过濾很小或很大象素值的阈像點。本函数支持的对图像取阈值的方法由 threshold_type 确定:

threshold_type=CV_THRESH_BINARY:
dst(x,y) = max_value, if src(x,y)>threshold
           0, otherwise

threshold_type=CV_THRESH_BINARY_INV:
dst(x,y) = 0, if src(x,y)>threshold
           max_value, otherwise

threshold_type=CV_THRESH_TRUNC:
dst(x,y) = threshold, if src(x,y)>threshold
           src(x,y), otherwise

threshold_type=CV_THRESH_TOZERO:
dst(x,y) = src(x,y), if (x,y)>threshold
           0, otherwise

threshold_type=CV_THRESH_TOZERO_INV:
dst(x,y) = 0, if src(x,y)>threshold
           src(x,y), otherwise

下面是图形化的阈值描述:

OpenCV对数组元素进行固定阀值操作函数Threshold

OpenCV对数组元素进行固定阀值操作函数Threshold

原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/241724.html

(0)
上一篇 2022年4月7日 01:21
下一篇 2022年4月7日 01:21

相关推荐

发表回复

登录后才能评论