我正在关注本教程https://github.com/computervisioneng/pose-detection-keypoints-estimation-yolov8
我正在替换我自己的数据,但无论哪种方式我都会收到相同的错误。问题是当我尝试使用“CVATtoCocoKeyPoints.py”文件中提供的代码将带注释的图像从 CVAT 转换为 YOLO 时。
Traceback (most recent call last):
File "/Users/ishaangupta/Downloads/main/assderp/jorgensen-v5/pose-detection-keypoints-estimation-yolov8/CVAT_to_cocoKeypoints.py", line 22, in <module>
bbox = image.getElementsByTagName('box')[0]
IndexError: list index out of range
嗯,似乎方法 getElementsByTagName() 会查找名为 box 的标签,因此,根据您提交的信息,最合乎逻辑的答案是,您的数据不会构成该标签.
应该处理此错误,因为可能存在提交的数据不具有该属性或其他属性的情况...
您可以上传您的数据示例吗?