图像阈值化

threshold


Applies a fixed-level threshold to each array element.
C++: double threshold( InputArray src, OutputArray dst, double thresh, double maxval, int type)
Python: cv2. threshold( src, thresh, maxval, type[, dst]) retval, dst
C: double cvThreshold( const CvArr* src, CvArr* dst, double threshold, double max_value, int threshold_type)
Python: cv. Threshold( src, dst, threshold, maxValue, thresholdType) None
Parameters
src – input array (single-channel, 8-bit or 32-bit floating point).
dst – output array of the same size and type as src.
thresh – threshold value.
maxval – maximum value to use with the THRESH_BINARY and THRESH_BINARY_INV
thresholding types.
type – thresholding type (see the details below).
The function applies fixed-level thresholding to a single-channel array. The function is typically used to get a bi-level
(binary) image out of a grayscale image ( compare() could be also used for this purpose) or for removing a noise,
that is, filtering out pixels with too small or too large values. There are several types of thresholding supported by the
function. They are determined by type :




Also, the special value THRESH_OTSU may be combined with one of the above values. In this case, the function
determines the optimal threshold value using the Otsu’s algorithm and uses it instead of the specified thresh . The
function returns the computed threshold value. Currently, the Otsu’s method is implemented only for 8-bit images.



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值