时间:2021-08-10 09:25:13 | 栏目:Python代码 | 点击:次
如下所示:
python3:
img_path = ' '
im = cv2.imdecode(np.fromfile(img_path,dtype = np.uint8),-1)
save_path = ' '
cv2.imencode('.jpg',im)[1].tofile(save_path)
python2.7:
img_path = ' '
im = cv2.imread(img_path.decode(‘utf-8'))