gpt4 book ai didi

python - 灰度图像不是 jpeg

转载 作者:行者123 更新时间:2023-12-03 20:22:49 24 4
gpt4 key购买 nike

我创建了这样的灰度图像

def create_new_image(size, luminance):
width, height = size
black_frame = int(luminance) * np.ones((width, height, 1), dtype=np.uint8)
return black_frame

其中亮度是[0, 255]的元素

我已经用imageio保存了图片

def save_image(image, output_path):
imageio.imwrite(output_path, image)

output_path 类似于/valid_path/img.jpg

现在我想加载我的灰度图像:

img = imageio.imread(file, format ='jpg')

但我得到的是语法错误。

raise SyntaxError("not a JPEG file")
File "<string>", line None
SyntaxError: not a JPEG file

如果我不指定格式,我会收到另一个错误。

    "Could not find a format to read the specified file in %s mode" % modename
ValueError: Could not find a format to read the specified file in single-image mode

为什么?谢谢

最佳答案

你可以试试:

def save_image(image, output_path):
imageio.imwrite(output_path, format= "jpg", image)

明确声明它是一个 jpg 文件。

关于python - 灰度图像不是 jpeg,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60713874/

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