PIL save numpy array as img encounter OSError: cannot write mode F as JPEG

该博客介绍了一段代码,用于读取文本文件中的图像流动数据,将其转换为NumPy数组,并使用PIL库创建图像。关键步骤包括检查和转换数据模式到RGB,以确保能够正确保存为JPEG格式。这段代码对于处理计算机视觉和视频处理任务中的光流数据尤其有用。
摘要由CSDN通过智能技术生成

在这里插入图片描述
Solution:
在这里插入图片描述

import numpy as np
from PIL import Image

with open('/media/yuxijin/dataset/videos/content/mountain_2/flow/reliable_9_10.txt', 'r') as f:
    data = f.readlines()
header = list(map(int, data[0].split(' ')))
w = header[0]
h = header[1]
vals = np.zeros((h, w), dtype=np.float32)
for i in range(1, len(data)):
    line = data[i].rstrip().split(' ')
    vals[i - 1] = np.array(list(map(np.float32, line)))

img = Image.fromarray(vals)
if img.mode != 'RGB': # pay attention to this line
    img = img.convert('RGB') # also this line
img.save('test.jpg')

Before saving the array, you have to check whether its mode is ‘RGB’ or not. If not, convert it to the ‘RGB’ mode. Then save it.

Reference blog:
PIL cannot write mode F to jpeg

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值