赞
踩
以下是一个 Python + OpenCV 实现图像二值化的代码示例:
- import cv2
- import numpy as np
-
- # 读入图像
- img = cv2.imread("image.jpg", 0)
-
- # 阈值处理
- _, thresh = cv2.threshold(img, 127, 255, cv2.THRESH_BINARY)
-
- # 展示图像
- cv2.imshow("Thresholded Image", thresh)
- cv2.waitKey(0)
- cv2.destroyAllWindows()
这段代码首先读入了一张图片 image.jpg
,然后
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。