码迷,mamicode.com
首页 > 其他好文 > 详细

imageio 载入 Buffer 格式的图片

时间:2018-11-02 23:38:47      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:imageio   简便   port   enc   文件   pat   rgb   int   使用   

import zipfile
import imageio
import cv2

# 载入压缩文件
Z = zipfile.ZipFile(path)
# 载入 buffer
buffer = Z.read(name)

使用 OpenCV 3

img1 = np.frombuffer(buffer, np.uint8)
# 解码为 np.uint8
img_cv = cv2.imdecode(img1, cv2.IMREAD_ANYCOLOR)
# BGR 或 GRAY 转换为 RGB
img = cv2.cvtColor(img_cv, cv2.COLOR_GRAY2RGB)

下面使用一种简便方式:

使用 imageio

img = imageio.imread(buffer)

imageio 载入 Buffer 格式的图片

标签:imageio   简便   port   enc   文件   pat   rgb   int   使用   

原文地址:https://www.cnblogs.com/q735613050/p/9898631.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!