gpt4 book ai didi

python - 将作为二进制字符串加载的图像转换为 numpy 数组

转载 作者:太空宇宙 更新时间:2023-11-04 00:16:22 26 4
gpt4 key购买 nike

有没有一种方法可以将作为二进制字符串加载的图像转换为大小为 (im_height, im_width, 3) 的 numpy 数组?像这样:

# read image as binary string
with open(img_path, "rb") as image_file:
image_string = image_file.read()

# convert image string to numpy
image_np = convert_binary_string_to_numpy(image_string)

那个转换函数会是什么样子?我正在处理解密,因此我需要处理二进制字符串。谢谢!

最佳答案

import io
import numpy as np
from PIL import Image

image_string = open(IMG_PATH, 'rb').read()
img = Image.open(io.BytesIO(image_string))
arr = np.asarray(img)

关于python - 将作为二进制字符串加载的图像转换为 numpy 数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50821145/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com