forked from 610265158/DSFD-tensorflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
prepare_wider_data.py
executable file
·103 lines (82 loc) · 2.67 KB
/
prepare_wider_data.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
#-*- coding:utf-8 -*-
from __future__ import division
from __future__ import absolute_import
from __future__ import print_function
import os
WIDER_ROOT = './WIDER'
train_list_file = os.path.join(WIDER_ROOT, 'wider_face_split',
'wider_face_train_bbx_gt.txt')
val_list_file = os.path.join(WIDER_ROOT, 'wider_face_split',
'wider_face_val_bbx_gt.txt')
WIDER_TRAIN = os.path.join(WIDER_ROOT, 'WIDER_train', 'images')
WIDER_VAL = os.path.join(WIDER_ROOT, 'WIDER_val', 'images')
def parse_wider_file(root, file):
with open(file, 'r') as fr:
lines = fr.readlines()
face_count = []
img_paths = []
face_loc = []
img_faces = []
count = 0
flag = False
for k, line in enumerate(lines):
line = line.strip().strip('\n')
if count > 0:
line = line.split(' ')
count -= 1
loc = [int(line[0]), int(line[1]), int(line[2]), int(line[3])]
face_loc += [loc]
if flag:
face_count += [int(line)]
flag = False
count = int(line)
if 'jpg' in line:
img_paths += [os.path.join(root, line)]
flag = True
total_face = 0
for k in face_count:
face_ = []
for x in range(total_face, total_face + k):
face_.append(face_loc[x])
img_faces += [face_]
total_face += k
return img_paths, img_faces
def wider_data_file():
img_paths, bbox = parse_wider_file(WIDER_TRAIN, train_list_file)
fw = open('train.txt', 'w')
for index in range(len(img_paths)):
tmp_str = ''
tmp_str =tmp_str+ img_paths[index]+'|'
boxes = bbox[index]
for box in boxes:
data = ' %d,%d,%d,%d,1'%(box[0], box[1], box[0]+box[2], box[1]+box[3])
tmp_str=tmp_str+data
if len(boxes) == 0:
print(tmp_str)
continue
####err box?
if box[2] <= 0 or box[3] <= 0:
pass
else:
fw.write(tmp_str + '\n')
fw.close()
img_paths, bbox = parse_wider_file(WIDER_VAL, val_list_file)
fw = open('val.txt', 'w')
for index in range(len(img_paths)):
tmp_str=''
tmp_str =tmp_str+ img_paths[index]+'|'
boxes = bbox[index]
for box in boxes:
data = ' %d,%d,%d,%d,1'%(box[0], box[1], box[0]+box[2], box[1]+box[3])
tmp_str=tmp_str+data
if len(boxes) == 0:
print(tmp_str)
continue
####err box?
if box[2] <= 0 or box[3] <= 0:
pass
else:
fw.write(tmp_str + '\n')
fw.close()
if __name__ == '__main__':
wider_data_file()