前提・実現したいこと
こちらの記事(https://farml1.com/snackpea_2/)を参考にkeras-yolo3のオリジナルモデルを作成したいと考えております。
voc_annotation.pyを実行すると以下に示したエラーメッセージが表示されました。
この時keras-yolo3-masterフォルダを確認すると『2007_train.txt』のテキストファイルのみが生成されており、テキストファイルには学習データのファイルパスが一行だけ記述されていました。
こちらの質問(https://teratail.com/questions/292256)への回答を参考にエラーの解消を試みましたが、同様のエラーメッセージが繰り返し表示されるため、未だ解決できておりません。
発生している問題・エラーメッセージ
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\anaconda3\envs\yolo_v3\lib\xml\etree\ElementTree.py", line 1197, in parse tree.parse(source, parser) File "C:\Users\anaconda3\envs\yolo_v3\lib\xml\etree\ElementTree.py", line 598, in parse self._root = parser._parse_whole(source) UnicodeDecodeError: 'cp932' codec can't decode byte 0x97 in position 25: illegal multibyte sequence
該当のソースコード
python
1import xml.etree.ElementTree as ET 2from os import getcwd 3 4sets=[('2007', 'train'), ('2007', 'val'), ('2007', 'test')] 5 6classes = ["item"] 7 8 9def convert_annotation(year, image_id, list_file): 10 in_file = open('VOCdevkit/VOC%s/Annotations/%s.xml'%(year, image_id), encoding='utf-8') 11 tree=ET.parse(in_file) 12 root = tree.getroot() 13 14 for obj in root.iter('object'): 15 difficult = obj.find('difficult').text 16 cls = obj.find('name').text 17 if cls not in classes or int(difficult)==1: 18 continue 19 cls_id = classes.index(cls) 20 xmlbox = obj.find('bndbox') 21 b = (int(xmlbox.find('xmin').text), int(xmlbox.find('ymin').text), int(xmlbox.find('xmax').text), int(xmlbox.find('ymax').text)) 22 list_file.write(" " + ",".join([str(a) for a in b]) + ',' + str(cls_id)) 23 24wd = getcwd() 25 26for year, image_set in sets: 27 image_ids = open('VOCdevkit/VOC%s/ImageSets/Main/%s.txt'%(year, image_set)).read().strip().split() 28 list_file = open('%s_%s.txt'%(year, image_set), 'w') 29 for image_id in image_ids: 30 list_file.write('%s/VOCdevkit/VOC%s/JPEGImages/%s.jpg'%(wd, year, image_id)) 31 convert_annotation(year, image_id, list_file) 32 list_file.write('\n') 33 list_file.close()
回答1件
あなたの回答
tips
プレビュー