二进制打开图片文件,base64编解码,转成Opencv格式:
# coding: utf-8import base64import numpy as npimport cv2img_file = open(r'00.JPG','rb') # 二进制打开图片文件img_b64encode = base64.b64encode(img_file.read()) # base64编码img_file.close() # 文件关闭img_b64decode = base64.b64decode(img_b64encode) # base64解码img_array = np.fromstring(img_b64decode,np.uint8) # 转换np序列img=cv2.imdecode(img_array,cv2.COLOR_BGR2RGB) # 转换Opencv格式cv2.imshow("img",img)cv2.waitKey()
二进制打开图片文件,base64编解码,转成PIL.Image格式:
# coding: utf-8# python base64 编解码,转换成Opencv,PIL.Image图片格式import base64import iofrom PIL import Imageimg_file = open(r'/home/dcrmg/work/medi_ocr_v1.2/img/00.JPG','rb') # 二进制打开图片文件img_b64encode = base64.b64encode(img_file.read()) # base64编码img_file.close() # 文件关闭img_b64decode = base64.b64decode(img_b64encode) # base64解码image = io.BytesIO(img_b64decode)img = Image.open(image)img.show()