最近一直在改SSD,今天往数据集里又增添了一些数据,一直报错:
Traceback (most recent call last):
File “voc_label.py”, line 54, in
convert_annotation(year, image_id)
File “voc_label.py”, line 35, in convert_annotation
difficult = obj.find(‘difficult’).text
AttributeError: ‘NoneType’ object has no attribute ‘text’
前人栽树:https://blog.csdn.net/qigeyonghuming_1/article/details/89376298
不过我的问题没有在这里得到解决。
由于博主新增加的图片格式是png格式,所以首先转了格式,还是迭代三次之后报相同的错。随即转向annotations,打开后经比对后发现,前后的xml文件里的内容格式并不一样。原来,标图之后导出的xml格式和Pascal voc格式并不一样。导入——导出,瞬间解决。