成功解决.append方法出现错误IndexError: list index out of range

简介: 成功解决.append方法出现错误IndexError: list index out of range

目录

解决问题

解决方法


 

 

解决问题

.append方法出现错误IndexError: list index out of range

 

 

解决方法

X.append(fr.face_encodings(image,known_face_locations=boxes)[0])

print(fr.face_encodings(image,known_face_locations=boxes)),

发现有张图片输出的fr.face_encodings(image,known_face_locations=boxes)的列表为  [ ]  即是空的,所以出现了list index out of range,

T1、只需要删除那张图片即可!

T2、改写函数,增加判断,如果当前数值列表为空,则跳出循环执行下一次循环

1.         for img_path in image_files_in_folder(os.path.join(train_dir, class_dir)):
2.             image = fr.load_image_file(img_path)
3.             boxes = fr.face_locations(image)
4.             print(img_path)
5. #             print(fr.face_encodings(image,known_face_locations=boxes))
6. 
7.             if len(fr.face_encodings(image,known_face_locations=boxes))==0:   #判断空列表
8.                 print("这张图片不合法,请删除!即将退出程序",img_path)
9.                 continue
10. #                 sys.exit()
11.             # 对于当前图片,增加编码到训练集,返回128个值放到X集合里(X.append)
12.             X.append(fr.face_encodings(image,known_face_locations=boxes)[0])

 


相关文章
|
6月前
|
运维 关系型数据库 Java
PolarDB产品使用问题之使用List或Range分区表时,Java代码是否需要进行改动
PolarDB产品使用合集涵盖了从创建与管理、数据管理、性能优化与诊断、安全与合规到生态与集成、运维与支持等全方位的功能和服务,旨在帮助企业轻松构建高可用、高性能且易于管理的数据库环境,满足不同业务场景的需求。用户可以通过阿里云控制台、API、SDK等方式便捷地使用这些功能,实现数据库的高效运维与持续优化。
|
6月前
|
存储 索引 Python
【Python】已解决:IndexError: list index out of range
【Python】已解决:IndexError: list index out of range
537 1
|
6月前
|
开发者 Python
【Python】已解决:TypeError: descriptor ‘index‘ for ‘list‘ objects doesn‘t apply to a ‘str‘ object
【Python】已解决:TypeError: descriptor ‘index‘ for ‘list‘ objects doesn‘t apply to a ‘str‘ object
165 0
|
7月前
|
Python
【已解决】AttributeError: ‘Index‘ object has no attribute ‘to_list‘
【已解决】AttributeError: ‘Index‘ object has no attribute ‘to_list‘
|
7月前
|
安全 Java
java线程之List集合并发安全问题及解决方案
java线程之List集合并发安全问题及解决方案
1077 1
|
6月前
|
Java API Apache
怎么在在 Java 中对List进行分区
本文介绍了如何将列表拆分为给定大小的子列表。尽管标准Java集合API未直接支持此功能,但Guava和Apache Commons Collections提供了相关API。
|
6月前
|
存储 安全 Java
详解Java中集合的List接口实现的ArrayList方法 | Set接口实现的HashSet方法
详解Java中集合的List接口实现的ArrayList方法 | Set接口实现的HashSet方法
|
7月前
|
Java API
使用 Java 来实现两个 List 的差集操作
使用 Java 来实现两个 List 的差集操作
235 3
|
6月前
|
存储 Java 索引
Java List接口实现原理与性能评估
Java List接口实现原理与性能评估
|
6月前
|
存储 缓存 安全
Java List操作详解及常用方法
Java List操作详解及常用方法