IndexError: index is out of bounds for dimension with size 0

最近看了以下yolov7-pose这个模型,想看一下视频的骨骼点检测效果怎么样,所以用了官方提供的yolov7-w6-pose.pt这个权重。但是在运行detect.py文件时遇到了问题解决了老半天,在此记录以下!!!

1.报错

IndexError: index is out of bounds for dimension with size 0_第1张图片

2.解决办法

(1)办法一

IndexError: index is out of bounds for dimension with size 0_第2张图片

 直接在Terminal运行python detect.py --kpt-label

(2)办法二

IndexError: index is out of bounds for dimension with size 0_第3张图片

IndexError: index is out of bounds for dimension with size 0_第4张图片 

 ok啦,就是这么简单就解决了,但是我搞了好几个小时!!!~~>_<~~

你可能感兴趣的:(python)