-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmakeTx.py
44 lines (39 loc) · 941 Bytes
/
makeTx.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
38
39
40
41
42
43
44
import os
import random
trainval_percent = 0
train_percent = 1
xmlfilepath = 'data/Annotations_test'
txtsavepath = 'data/ImageSets_test'
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('data/ImageSets_train/trainval.txt', 'w')
ftrain = open('data/ImageSets_test/test.txt', 'w')
#fval = open('data/ImageSets_train/val.txt', 'w')
for i in list:
name = total_xml[i][:-4] + '\n'
print(name)
'''
if i in trainval:
ftrainval.write(name)
if i in train:
pass
#ftest.write(name)
else:
fval.write(name)
else:
ftrain.write(name)
'''
if i in trainval:
pass
else:
ftrain.write(name)
print(i)
#ftrainval.close()
ftrain.close()
#fval.close()
#ftest.close()