実現したいこと
自分でオリジナルモデルのyoloを作成したいと思い作業を進めていたら、voc_annotation.pyでエラーメッセージが出てきました。
初心者なものでコードのどこを直したらいいのかわかりません。
発生している問題・エラーメッセージ
文字の型が違うと言われています。
Traceback (most recent call last):
File "voc_annotation.py", line 31, in <module>
convert_annotation(year, image_id,list_file)
File "voc_annotation.py", line 11, in convert_annotation
tree=ET.parse(in_file)
File "C:\Users\takuya\anaconda3\envs\yolov3\lib\xml\etree\ElementTree.py", line 1197, in parse
tree.parse(source, parser)
File "C:\Users\takuya\anaconda3\envs\yolov3\lib\xml\etree\ElementTree.py", line 598, in parse
self._root = parser._parse_whole(source)
UnicodeDecodeError: 'cp932' codec can't decode byte 0x8f in position 31: illegal multibyte sequence
該当のソースコード
import xml.etree.ElementTree as ET
from os import getcwd
sets=[('2007', 'train'), ('2007', 'val'), ('2007', 'test')]
classes = ["book","book1"]
def convert_annotation(year, image_id, list_file):
in_file = open('VOCdevkit/VOC%s/Annotations/%s.xml'%(year, image_id))
tree=ET.parse(in_file)
root = tree.getroot()
for obj in root.iter('object'): difficult = obj.find('difficult').text cls = obj.find('name').text if cls not in classes or int(difficult)==1: continue cls_id = classes.index(cls) xmlbox = obj.find('bndbox') b = (int(xmlbox.find('xmin').text), int(xmlbox.find('ymin').text), int(xmlbox.find('xmax').text), int(xmlbox.find('ymax').text)) list_file.write(" " + ",".join([str(a) for a in b]) + ',' + str(cls_id))
wd = getcwd()
for year, image_set in sets:
image_ids = open('VOCdevkit/VOC%s/ImageSets/Main/%s.txt'%(year, image_set)).read().strip().split()
list_file = open('%s_%s.txt'%(year, image_set), 'w')
for image_id in image_ids:
list_file.write('%s/VOCdevkit/VOC%s/JPEGImages/%s.jpg'%(wd, year, image_id))
convert_annotation(year, image_id, list_file)
list_file.write('\n')
list_file.close()
試したこと
文字のコーディングをどうにかすればいいとネットで調べたのですが、どこをどうすればいいのかわかりません。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/09/24 03:10
2020/10/08 09:57