PIL报错:TypeError: Cannot handle this data type: (1, 1, 3), <f4及解决Image.fromarray保存后的结果是纯黑的图片

本文主要是介绍PIL报错:TypeError: Cannot handle this data type: (1, 1, 3), <f4及解决Image.fromarray保存后的结果是纯黑的图片,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

PIL报错:TypeError: Cannot handle this data type: 1, 1, 3 <f4及解决Image.fromarray保存后的结果是纯黑的图片

  • 1.问题背景
  • 2.解决办法
    • 2.1.解决`Image.fromarray()`保存图片报错
    • 2.2.解决保存后的结果是纯黑的图片

⚡插播一条老家自产的糖心苹果,有问题随时私信我⚡:🍎🍎来自雪域高原的馈赠——海拔2000米的大凉山高原生态糖心苹果,欢迎选购!!🍎🍎
在这里插入图片描述

大凉山高原生态糖心苹果

1.问题背景

在使用深度学习进行图像分类时,有时候需要将内存中的ndarray保存为本地图像,我这边使用了PILImage.fromarray函数,具体代码如下:

from PIL import Image
import os
import uuidimg_file = Image.fromarray(images_array_list[_index])
img_file.save(os.path.join(images_save_path, "{}-{}.jpg".format(TIME_STAMP, uuid.uuid4())))

却发生报错:
TypeError: Cannot handle this data type: (1, 1, 3), <f4
在这里插入图片描述
具体报错信息:

Traceback (most recent call last):File "C:\Users\Anaconda3\envs\tf1.7\lib\site-packages\PIL\Image.py", line 2828, in fromarraymode, rawmode = _fromarray_typemap[typekey]
KeyError: ((1, 1, 3), '<f4')
The above exception was the direct cause of the following exception:
Traceback (most recent call last):File "C:\Users\Anaconda3\envs\tf1.7\lib\site-packages\IPython\core\interactiveshell.py", line 3343, in run_codeexec(code_obj, self.user_global_ns, self.user_ns)File "<ipython-input-2-13650c2b0b93>", line 1, in <module>runfile('E:/Code/Python/keras不使用generator批量预测图像.py', wdir='E:/Code/Python')File "C:\Program Files\JetBrains\PyCharm 2020.1\plugins\python\helpers\pydev\_pydev_bundle\pydev_umd.py", line 197, in runfilepydev_imports.execfile(filename, global_vars, local_vars)  # execute the scriptFile "C:\Program Files\JetBrains\PyCharm 2020.1\plugins\python\helpers\pydev\_pydev_imps\_pydev_execfile.py", line 18, in execfileexec(compile(contents+"\n", file, 'exec'), glob, loc)File "E:/Code/Python/keras不使用generator批量预测图像.py", line 44, in <module>img_file = Image.fromarray(images_list[_index])File "C:\Users\Anaconda3\envs\tf1.7\lib\site-packages\PIL\Image.py", line 2830, in fromarrayraise TypeError("Cannot handle this data type: %s, %s" % typekey) from e
TypeError: Cannot handle this data type: (1, 1, 3), <f4

2.解决办法

2.1.解决Image.fromarray()保存图片报错

原因是Image.fromarray() 不支持float32类型的数据,但我这边输入的images_array_list数据类型是 float32,便造成了上述报错!因此,只需要将类型转换为Image.fromarray() 支持的类型即可(本文转为uint8类型),如下所示:

from PIL import Image
import os
import uuid
import numpy as npimg_file = Image.fromarray(np.uint8(images_list[_index]))
img_file.save(os.path.join(images_save_path, "{}-{}.jpg".format(TIME_STAMP, uuid.uuid4())))

运行上述代码,没有报错且成功保存了图像,但为啥图像是这样的:
在这里插入图片描述
这又是咋回事?
在这里插入图片描述
咱们接着往下看:

2.2.解决保存后的结果是纯黑的图片

这主要是因为我们的图片中的像素值被预处理之后,其值在[-1,1]之间,而图片的像素值取值范围一般是[0,255],所以我们只需要将像素值由[-1,1]缩放到[0,255]即可!因为我这边使用的是Keras框架,里面自带了array_to_img函数,可以方便的转换图像:

def array_to_img(x, data_format=None, scale=True):"""Converts a 3D Numpy array to a PIL Image instance.# Argumentsx: Input Numpy array.data_format: Image data format.scale: Whether to rescale image valuesto be within [0, 255].# ReturnsA PIL Image instance.# RaisesImportError: if PIL is not available.ValueError: if invalid `x` or `data_format` is passed."""if pil_image is None:raise ImportError('Could not import PIL.Image. ''The use of `array_to_img` requires PIL.')x = np.asarray(x, dtype=K.floatx())if x.ndim != 3:raise ValueError('Expected image array to have rank 3 (single image). ''Got array with shape:', x.shape)if data_format is None:data_format = K.image_data_format()if data_format not in {'channels_first', 'channels_last'}:raise ValueError('Invalid data_format:', data_format)# Original Numpy array x has format (height, width, channel)# or (channel, height, width)# but target PIL image has format (width, height, channel)if data_format == 'channels_first':x = x.transpose(1, 2, 0)if scale:x = x + max(-np.min(x), 0)x_max = np.max(x)if x_max != 0:x /= x_maxx *= 255if x.shape[2] == 3:# RGBreturn pil_image.fromarray(x.astype('uint8'), 'RGB')elif x.shape[2] == 1:# grayscalereturn pil_image.fromarray(x[:, :, 0].astype('uint8'), 'L')else:raise ValueError('Unsupported channel number: ', x.shape[2])

我们直接使用上述函数即可,即:

img_file = Image.fromarray(np.uint8(_images_list[_index]))

修改为

img_file = array_to_img(images_list[_index])

可以看到图像显示正常了:

在这里插入图片描述

这篇关于PIL报错:TypeError: Cannot handle this data type: (1, 1, 3), <f4及解决Image.fromarray保存后的结果是纯黑的图片的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/267169

相关文章

Java使用Thumbnailator库实现图片处理与压缩功能

《Java使用Thumbnailator库实现图片处理与压缩功能》Thumbnailator是高性能Java图像处理库,支持缩放、旋转、水印添加、裁剪及格式转换,提供易用API和性能优化,适合Web应... 目录1. 图片处理库Thumbnailator介绍2. 基本和指定大小图片缩放功能2.1 图片缩放的

Springboot项目启动失败提示找不到dao类的解决

《Springboot项目启动失败提示找不到dao类的解决》SpringBoot启动失败,因ProductServiceImpl未正确注入ProductDao,原因:Dao未注册为Bean,解决:在启... 目录错误描述原因解决方法总结***************************APPLICA编

解决pandas无法读取csv文件数据的问题

《解决pandas无法读取csv文件数据的问题》本文讲述作者用Pandas读取CSV文件时因参数设置不当导致数据错位,通过调整delimiter和on_bad_lines参数最终解决问题,并强调正确参... 目录一、前言二、问题复现1. 问题2. 通过 on_bad_lines=‘warn’ 跳过异常数据3

解决RocketMQ的幂等性问题

《解决RocketMQ的幂等性问题》重复消费因调用链路长、消息发送超时或消费者故障导致,通过生产者消息查询、Redis缓存及消费者唯一主键可以确保幂等性,避免重复处理,本文主要介绍了解决RocketM... 目录造成重复消费的原因解决方法生产者端消费者端代码实现造成重复消费的原因当系统的调用链路比较长的时

深度解析Nginx日志分析与499状态码问题解决

《深度解析Nginx日志分析与499状态码问题解决》在Web服务器运维和性能优化过程中,Nginx日志是排查问题的重要依据,本文将围绕Nginx日志分析、499状态码的成因、排查方法及解决方案展开讨论... 目录前言1. Nginx日志基础1.1 Nginx日志存放位置1.2 Nginx日志格式2. 499

SpringBoot监控API请求耗时的6中解决解决方案

《SpringBoot监控API请求耗时的6中解决解决方案》本文介绍SpringBoot中记录API请求耗时的6种方案,包括手动埋点、AOP切面、拦截器、Filter、事件监听、Micrometer+... 目录1. 简介2.实战案例2.1 手动记录2.2 自定义AOP记录2.3 拦截器技术2.4 使用Fi

kkFileView启动报错:报错2003端口占用的问题及解决

《kkFileView启动报错:报错2003端口占用的问题及解决》kkFileView启动报错因office组件2003端口未关闭,解决:查杀占用端口的进程,终止Java进程,使用shutdown.s... 目录原因解决总结kkFileViewjavascript启动报错启动office组件失败,请检查of

SQL Server安装时候没有中文选项的解决方法

《SQLServer安装时候没有中文选项的解决方法》用户安装SQLServer时界面全英文,无中文选项,通过修改安装设置中的国家或地区为中文中国,重启安装程序后界面恢复中文,解决了问题,对SQLSe... 你是不是在安装SQL Server时候发现安装界面和别人不同,并且无论如何都没有中文选项?这个问题也

java内存泄漏排查过程及解决

《java内存泄漏排查过程及解决》公司某服务内存持续增长,疑似内存泄漏,未触发OOM,排查方法包括检查JVM配置、分析GC执行状态、导出堆内存快照并用IDEAProfiler工具定位大对象及代码... 目录内存泄漏内存问题排查1.查看JVM内存配置2.分析gc是否正常执行3.导出 dump 各种工具分析4.

Spring的RedisTemplate的json反序列泛型丢失问题解决

《Spring的RedisTemplate的json反序列泛型丢失问题解决》本文主要介绍了SpringRedisTemplate中使用JSON序列化时泛型信息丢失的问题及其提出三种解决方案,可以根据性... 目录背景解决方案方案一方案二方案三总结背景在使用RedisTemplate操作redis时我们针对