01 2024 档案

摘要:python import cv2 import numpy as np ''' opencv的image数据格式就是用numpy unit8 格式存储的。两者之间可以相互转换 ''' img = cv2.imread("../img/1.jpg") print(img.shape) # (1080 阅读全文
posted @ 2024-01-23 09:16 cheng4632 阅读(5) 评论(0) 推荐(0) 编辑