opencv3 threshold函数阈值设定
threshold函数定义如下: def threshold(src, thresh, maxval, type, dst=None): 第一个参数:src。 input array (multiple-channel, 8-bit or 32-bit floating point). 即为输入图像,但需转化为8或32位单通道,即灰度图像。 第二个参数:thresh。 threshold value.自己设定的阈值,这个阈值的对后面的操作有影响,而它的作用又需要第四个参数来指定。 第三个参数:maxval。 maximum value to use with the #THRESH_BINAR
用户评论