其他分享
首页 > 其他分享> > 相关比赛网址及提交说明

相关比赛网址及提交说明

作者:互联网

2017年LiTS数据:https://drive.google.com/drive/folders/0B0vscETPGI1-Q1h1WFdEM2FHSUE
医学图像分割中需要dice+focal 与 dice+ce进行结果的对比。
2019年相关数据的准换xml—json可参考线上的网页转化,这只是针对单个文件的转换,若要进行批量转换则需要进行代码的阅读与编写,下面是我的一个例子:
from xml.etree import ElementTree as et
import json

root1 = et.parse(“01_01_0083.xml”)
f = open(‘00833.json’,‘a’,encoding = “utf-8”) #s属性命名方式的读取到json文件中
for each in root1.getiterator(“Region”):
tempDict = each.attrib
for childNode in each.getchildren():
tempDict[childNode.tag] = childNode.text tempJson = json.dumps(tempDict,ensure_ascii = False)
print(tempJson)
f.write(tempJson +’\n’)
f.close()
未完待续。。。。。

标签:xml,比赛,提交,网址,json,tempDict,each,tempJson,childNode
来源: https://blog.csdn.net/qq_39682365/article/details/97011210