-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestyolov31203.py
37 lines (32 loc) · 1.11 KB
/
testyolov31203.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#参考程序 yolov3的配置过程
import os
import random
trainval_percent = 0.1
train_percent = 0.9
xmlfilepath = 'E:\Study\Research\Program\YOLO\VOC2007\Annotations'
txtsavepath = 'E:\Study\Research\Program\YOLO\VOC2007\ImageSets\Main'
total_xml = os.listdir(xmlfilepath)
num = len(total_xml)
list = range(num)
tv = int(num * trainval_percent)
tr = int(tv * train_percent)
trainval = random.sample(list, tv)
train = random.sample(trainval, tr)
ftrainval = open('E:\Study\Research\Program\YOLO\VOC2007\ImageSets\Main\\trainval.txt', 'w')
ftest = open('E:\Study\Research\Program\YOLO\VOC2007\ImageSets\Main\\test.txt', 'w')
ftrain = open('E:\Study\Research\Program\YOLO\VOC2007\ImageSets\Main\\train.txt', 'w')
fval = open('E:\Study\Research\Program\YOLO\VOC2007\ImageSets\Main\\val.txt', 'w')
for i in list:
name = total_xml[i][:-4] + '\n'
if i in trainval:
ftrainval.write(name)
if i in train:
ftest.write(name)
else:
fval.write(name)
else:
ftrain.write(name)
ftrainval.close()
ftrain.close()
fval.close()
ftest.close()