python base64 編解碼,轉換成Opencv,PIL.Image圖片格式

二進制打開圖片文件,base64編解碼,轉成Opencv格式:python # coding: utf-8 import base64 import numpy as np import cv2 img_file = open(r'00.JPG','rb') # 二進制打開圖片文件 img_b64encode = base64.b64encode(img_file.read()) # ba
相關文章
相關標籤/搜索