opencv-api adaptiveThreshold

dst	=	cv.adaptiveThreshold(	src, maxValue, adaptiveMethod, thresholdType, blockSize, C[, dst]	)
参数 描述
dst 输出图像
src 8位单通道图
maxValue 满足条件的点要赋的值
adaptiveMethod 自适应方法
thresholdType 二值化类型
blockSize 计算时所选用的窗格大小
c Constant subtracted from the mean or weighted mean (see the details below).

参考文献:
https://docs.opencv.org/3.4.3/d7/d1b/group__imgproc__misc.html#ga72b913f352e4a1b1b397736707afcde3

你可能感兴趣的:(图像识别)