image_size must contain 3 elements[4]

Posted chay

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了image_size must contain 3 elements[4]相关的知识,希望对你有一定的参考价值。

今天在制作自己训练集合并且训练的时候,碰见了如下的错:

image_size must contain 3 elements[4]

这是因为训练的数据集中不是所有的图片位深都是三通道的。
写一个脚本查看所有的数据集中所有的数据,列举出不是RGB的图片:

from PIL import Image     
import os       
path = '/home/seven/cy_folder/data/plane/' #图片目录 
for file in os.listdir(path):      
     extension = file.split('.')[-1]
     if extension == 'jpg':
           fileLoc = path+file
           img = Image.open(fileLoc)
           if img.mode != 'RGB':
                 print(file+', '+img.mode)

然后删除这些图片,可以重新找一些图片添加到训练集中。
这里需要特别注意的一点是不是所有的.jpg文件都是三通道的。

以上是关于image_size must contain 3 elements[4]的主要内容,如果未能解决你的问题,请参考以下文章

does not contain bitcode. You must rebuild it with

haploview出现“results file must contain a snp column”的解决方法

does not contain bitcode. You must rebuild it with

VARMAX 结果扩展导致 ValueError: array must not contain infs or NaNs

kibana报错:Request must contain a kbn-xsrf header.

kibana报错:Request must contain a kbn-xsrf header.