圆月山庄资源网 Design By www.vgjia.com
这是我的xml文件结构
<"htmlcode">__author__ = 'Sam' import cv2 import xml.etree.ElementTree as ET import os import sys import lxml import shutil #user input files path path="E:/test_folder" image_path = path + "/Annotations/" #image path with .jpg ending label_path = path + "/JPEGImages/" #label path with .xml ending min_size=800 def search_jpg_xml(image_dir,label_dir): #find out all of sepecified file image_ext='.jpg' img=[fn for fn in os.listdir(image_dir) if fn.endswith(image_ext)] label_ext='.xml' label=[fn for fn in os.listdir(label_dir) if fn.endswith(label_ext)] return img, label def copyfile(): if "Annotations_temp" in os.listdir(path): shutil.rmtree(path+"/Annotations_temp") if "JPEGImages_temp" in os.listdir(path): shutil.rmtree(path+"/JPEGImages_temp") save_annotation_path=path+"/Annotations_temp/" save_jpg_path=path+"/JPEGImages_temp/" shutil.copytree(path + "/Annotations",save_annotation_path) shutil.copytree(path + "/JPEGImages", save_jpg_path) return save_jpg_path ,save_annotation_path def write_xml_jpg(jpg_path,annotation_path): img,label=search_jpg_xml(jpg_path,annotation_path) sorted(img) sorted(label) print(img) print(label) if "Annotations_1" not in os.listdir(path): os.mkdir(path+"/Annotations_1") if "JPEGImages_1" not in os.listdir(path): os.mkdir(path+"/JPEGImages_1") new_image_path=path+"/JPEGImages_1/" new_annotation_path=path+"/Annotations_1/" for index,file in enumerate(label): cur_img = cv2.imread(jpg_path+img[index]) width=cur_img.shape[1] height=cur_img.shape[0] if width<height: new_width=min_size new_height=int(min_size*height/width) w_ratio=new_width/width h_ratio=new_height/height elif width>height: new_width=int(min_size*width/height) new_height=min_size w_ratio=new_width/width h_ratio=new_height/height elif width==height: new_width=min_size new_height=min_size w_ratio=new_width/width h_ratio=new_height/height cur_img = cv2.resize(cur_img, (new_width, new_height)) cv2.imwrite(new_image_path+img[index],cur_img) cur_xml = ET.parse(annotation_path+file) root = cur_xml.getroot() for node in root: if node.tag=='size': node[0].text=str(new_width) node[1].text=str(new_height) elif node.tag=='object': xmin=int(node[4][0].text)#bbox position ymin=int(node[4][1].text) xmax=int(node[4][2].text) ymax=int(node[4][3].text) node[4][0].text=str(int(xmin*w_ratio)) node[4][1].text=str(int(ymin*h_ratio)) node[4][2].text=str(int(xmax*w_ratio)) node[4][3].text=str(int(ymax*h_ratio)) cur_xml.write(new_annotation_path+file) shutil.rmtree(path+"/JPEGImages_temp") shutil.rmtree(path+"/Annotations_temp") if __name__ == "__main__": jpg_path,annotation_path=copyfile() write_xml_jpg(jpg_path,annotation_path)最关键语句是:
node[4][3].text=str(int(ymax*h_ratio)),注意xml节点的操作是字符型!!!
以上这篇对python修改xml文件的节点值方法详解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
标签:
python,xml,节点值
圆月山庄资源网 Design By www.vgjia.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
圆月山庄资源网 Design By www.vgjia.com
暂无评论...
更新日志
2024年11月06日
2024年11月06日
- 雨林唱片《赏》新曲+精选集SACD版[ISO][2.3G]
- 罗大佑与OK男女合唱团.1995-再会吧!素兰【音乐工厂】【WAV+CUE】
- 草蜢.1993-宝贝对不起(国)【宝丽金】【WAV+CUE】
- 杨培安.2009-抒·情(EP)【擎天娱乐】【WAV+CUE】
- 周慧敏《EndlessDream》[WAV+CUE]
- 彭芳《纯色角3》2007[WAV+CUE]
- 江志丰2008-今生为你[豪记][WAV+CUE]
- 罗大佑1994《恋曲2000》音乐工厂[WAV+CUE][1G]
- 群星《一首歌一个故事》赵英俊某些作品重唱企划[FLAC分轨][1G]
- 群星《网易云英文歌曲播放量TOP100》[MP3][1G]
- 方大同.2024-梦想家TheDreamer【赋音乐】【FLAC分轨】
- 李慧珍.2007-爱死了【华谊兄弟】【WAV+CUE】
- 王大文.2019-国际太空站【环球】【FLAC分轨】
- 群星《2022超好听的十倍音质网络歌曲(163)》U盘音乐[WAV分轨][1.1G]
- 童丽《啼笑姻缘》头版限量编号24K金碟[低速原抓WAV+CUE][1.1G]