自学python-opencv(3)超大图像二值化
摘要:
import cv2import numpy as npdef large_image_binary(images): #超大图像二值化 print(images.shape) cw=128 ch=128 h,w=images.shape[0:2] gray=cv2.cvtColor(images, 阅读全文
posted @ 2020-09-25 22:27 451xxx 阅读(43) 评论(0) 推荐(0) 编辑