摘要: opencv 的图像类型都是numpy array。dtype = uint8。 如果是默认的python的int类型的numpy array,即使每个整数都在范围0-255, 图像也不会显示,必须转为uint8: arr = arr.astype(np.uint8) cv2.imshow("win 阅读全文
posted @ 2021-02-28 14:32 姜劭 阅读(69) 评论(0) 推荐(0) 编辑