python3用PIL把图片转换为RGB图片

网友投稿 1269 2022-08-23

python3用PIL把图片转换为RGB图片

python3用PIL把图片转换为RGB图片

感想

我们在做深度学习处理图片的时候,如果是自己制作或者收集的数据集,不可避免的要对数据集进行处理,然后大多数模型都只支持RGB格式的图片,这个时候,我们需要把其他格式的图片,例如灰度图像转换为RGB的图片,网上只有灰度图像转换为RGB的教程,我这里弥补一下空缺。

from PIL import Imageimport numpy as npL_path='train/5509031.jpg'L_image=Image.open(L_path)out = L_image.convert("RGB")img=np.array(out)print(out.mode)print(out.size)print(img.shape)

然后就可以转换了哈。

如果是大量的图片呢,那就笨办法,用循环判断吧:

from PIL import Imagefrom tqdm import tqdmimport numpy as nproot_path='data'for item in tqdm(examples): arr=item.strip().split('*') img_name=arr[0] image_path=os.path.join(root_path,img_name) img=Image.open(image_path) if(img.mode!='RGB'): img = img.convert("RGB") img=np.array(img) print(img_name) print(img.shape) # add your code

我的图片路径是通过一个txt文件读取的,这里给出一些train.txt里面样例:

train/1769512.jpg* postcard construction 67 mixed media epoxy collage 7 x 135 x 4* art||drawing||sculpturetrain/5020991.jpg* en el cuadro de honor de todas las 50appsalud en un grfico en espaol* mhealthtrain/3525659.jpg* information mogadishu port expansion turkish company* somalia

参考文献

[1].Convert png to jpeg using Pillow in python.​​Module.​​https://pillow.readthedocs.io/en/3.1.x/reference/Image.html​​

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:[leetcode] 811. Subdomain Visit Count
下一篇:python keras bert ChnSentiCorp情感分析酒店评论分类
相关文章

 发表评论

暂时没有评论,来抢沙发吧~