摘要: cv2.imwrite(filename, img) 修改为 cv2.imencode('.jpg', img)[1].tofile(filename) cv2.imread(filename, cv2.IMREAD_GRAYSCALE) 修改为 cv2.imdecode(np.fromfile(f 阅读全文
posted @ 2023-03-06 11:28 天天代码码天天 阅读(277) 评论(0) 推荐(0) 编辑