(三)opencv_py之阈值处理
阈值处理
参考:
opencv
| opencv_py | cv | 数字图像处理 |
|---|---|---|
| Simple thresholding | cv.threshold | 全局阈值处理 |
| Adaptive thresholding | cv.adaptiveThreshold | 可变阈值处理(自适应阈值处理) |
| Otsu's thresholding | cv.threshold + cv.THRESH_OTSU | Otsu方法的最佳全局阈值处理 |
参考:
| opencv_py | cv | 数字图像处理 |
|---|---|---|
| Simple thresholding | cv.threshold | 全局阈值处理 |
| Adaptive thresholding | cv.adaptiveThreshold | 可变阈值处理(自适应阈值处理) |
| Otsu's thresholding | cv.threshold + cv.THRESH_OTSU | Otsu方法的最佳全局阈值处理 |