SSD-函式用法
voc_annotation.py
1、解析xml檔案
import xml.etree.ElementTree as ET
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'):
# print(obj)
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))
------》註解
2、獲取當前路徑
from os import getcwd
wd=getcwd()
wd=wd.replace('\\', '/')
3、將解析的資料寫入xml檔案中
for year, image_set in sets:
image_ids = open('VOCdevkit/VOC%s/ImageSets/Main/%s.txt'%(year, image_set)).read().strip().split()
print(image_ids)
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()
---------》》》》註解
strip():移除頭尾指定字元,此時移除為頭尾的空格
split() 通過指定分隔符對字串進行切片,此時以空格為分隔符
4、列表的應用(包含元組的列表和索引)
sets=[('2007', 'train'), ('2007', 'val'), ('2007', 'test')]
for year, image_set in sets:
classes = ["aeroplane", "bicycle", "bird", "boat", "bottle", "bus", "car", "cat", "chair", "cow", "diningtable", "dog", "horse", "motorbike", "person", "pottedplant", "sheep", "sofa", "train", "tvmonitor"]
cls_id = classes.index(cls)
5、結果輸出
6、整體程式碼
https://blog.csdn.net/m0_45085566/article/details/109322383
僅用於自身學習記錄
相關文章
- abs函式用法函式
- Python range() 函式用法Python函式
- GetModuleFileName函式的用法函式
- Instr函式的用法函式
- SQL LEN()函式用法SQL函式
- Python排序函式用法Python排序函式
- PHP 自定義函式用法及常用函式集合PHP函式
- 【Oracle的NVL函式用法】Oracle函式
- string 函式的基本用法函式
- C++ replace() 函式用法C++函式
- fcntl函式用法詳解函式
- StretchBlt函式和BitBlt函式的區別和用法函式
- C語言中函式printf()和函式scanf()的用法C語言函式
- sys_context函式的用法Context函式
- C# List常用函式用法C#函式
- python中zip()函式的用法Python函式
- Python3 range() 函式用法Python函式
- PostgreSQL>視窗函式的用法SQL函式
- abs(int)、fabs(double)函式用法函式
- SQL函式Group_concat用法SQL函式
- Lua——load和loadstring函式用法函式
- C++回撥函式 用法C++函式
- C++ 函式 realloc 的用法C++函式
- Excel函式的初級用法Excel函式
- Matlab中erf函式的用法Matlab函式
- oracle資料庫常用分析函式與聚合函式的用法Oracle資料庫函式
- Sanic response stream() 函式用法和示例函式
- Sanic response redirect() 函式用法和示例函式
- Sanic response raw() 函式用法和示例函式
- Sanic response file() 函式用法和示例函式
- Sanic response json() 函式用法和示例JSON函式
- Sanic response html() 函式用法和示例HTML函式
- Sanic response text() 函式用法和示例函式
- C語言中qsort函式的用法C語言函式
- C語言函式sscanf()的用法C語言函式
- MySQL視窗函式用法總結MySql函式
- Python 偏函式用法全方位解析Python函式
- Python中的split()函式的用法Python函式