forked from LmeSzinc/text_renderer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.py
More file actions
204 lines (157 loc) · 6.08 KB
/
Copy pathmain.py
File metadata and controls
204 lines (157 loc) · 6.08 KB
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
#!/usr/env/bin python3
"""
Generate training and test images.
"""
import traceback
import numpy as np
import multiprocessing as mp
from itertools import repeat
import os
import cv2
from libs.config import load_config
from libs.timer import Timer
from parse_args import parse_args
import libs.utils as utils
import libs.font_utils as font_utils
from textrenderer.corpus.corpus_utils import corpus_factory
from textrenderer.renderer import Renderer
from tenacity import retry
def read_charset(charset_fp):
alphabet = [None]
# 第0个元素是预留id,在CTC中用来分割字符。它不对应有意义的字符
with open(charset_fp, encoding='utf-8') as fp:
for line in fp:
alphabet.append(line.rstrip('\n'))
print('Alphabet size: %d' % len(alphabet))
inv_alph_dict = {_char: idx for idx, _char in enumerate(alphabet)}
inv_alph_dict[' '] = inv_alph_dict['<space>'] # 对应空格
return alphabet, inv_alph_dict
lock = mp.Lock()
counter = mp.Value('i', 0)
STOP_TOKEN = 'kill'
flags = parse_args()
cfg = load_config(flags.config_file)
ALPHABET, INV_ALPH_DICT = None, None
if flags.charset_file and os.path.exists(flags.charset_file):
ALPHABET, INV_ALPH_DICT = read_charset(flags.charset_file)
fonts = font_utils.parse_font_paths(flags.fonts_list)
bgs = utils.load_bgs(flags.bg_dir)
corpus = corpus_factory(flags.corpus_mode, flags.chars_file, flags.corpus_dir, flags.length)
renderer = Renderer(corpus, fonts, bgs, cfg,
height=flags.img_height,
width=flags.img_width,
space_ratio=flags.space_ratio,
clip_max_chars=flags.clip_max_chars,
max_chars=flags.length,
debug=flags.debug,
gpu=flags.gpu,
strict=flags.strict)
def start_listen(q, fname):
""" listens for messages on the q, writes to file. """
f = open(fname, mode='a', encoding='utf-8')
while 1:
m = q.get()
if m == STOP_TOKEN:
break
try:
f.write(str(m) + '\n')
except:
traceback.print_exc()
with lock:
if counter.value % 1000 == 0:
f.flush()
f.close()
@retry
def gen_img_retry(renderer, img_index):
try:
return renderer.gen_img(img_index)
except Exception as e:
print("Retry gen_img: %s" % str(e))
traceback.print_exc()
raise Exception
def generate_img(img_index, q=None):
global flags, lock, counter, INV_ALPH_DICT
# Make sure different process has different random seed
np.random.seed()
im, word = gen_img_retry(renderer, img_index)
# print(word)
if INV_ALPH_DICT:
try:
word = ' '.join([str(INV_ALPH_DICT[c]) for c in word])
except KeyError:
return
# print(word)
base_name = '{:08d}.jpg'.format(img_index)
if not flags.viz:
fname = os.path.join(flags.save_dir, base_name)
cv2.imwrite(fname, im)
label = "{}/{} {}".format(flags.tag, base_name, word)
# print(label)
if q is not None:
q.put(label)
with lock:
counter.value += 1
print_end = '\n' if counter.value == flags.num_img else '\r'
if counter.value % 100 == 0 or counter.value == flags.num_img:
print("{}/{} {:2d}%".format(counter.value,
flags.num_img,
int(counter.value / flags.num_img * 100)),
end=print_end)
else:
utils.viz_img(im)
def sort_labels(tmp_label_fname, label_fname):
lines = []
with open(tmp_label_fname, mode='r', encoding='utf-8') as f:
lines = f.readlines()
lines = sorted(lines)
with open(label_fname, mode='w', encoding='utf-8') as f:
for line in lines:
f.write(line)
def restore_exist_labels(label_path):
# 如果目标目录存在 labels.txt 则向该目录中追加图片
start_index = 0
if os.path.exists(label_path):
start_index = len(utils.load_chars(label_path))
print('Generate more text images in %s. Start index %d' % (flags.save_dir, start_index))
else:
print('Generate text images in %s' % flags.save_dir)
return start_index
def get_num_processes(flags):
processes = flags.num_processes
if processes is None:
processes = max(os.cpu_count(), 2)
return processes
# def read_corpus(fp="./data/corpus/The Hitchhiker's Guide to the Galaxy.txt"):
# with open(fp) as f:
# lines = f.readlines()
# alphabet = ''.join([line.strip() for line in lines])
# return alphabet
if __name__ == "__main__":
# chars = read_corpus()
# new_chars = [c for c in chars if c not in INV_ALPH_DICT]
# for c in new_chars:
# print(c)
# It seems there are some problems when using opencv in multiprocessing fork way
# https://github.com/opencv/opencv/issues/5150#issuecomment-161371095
# https://github.com/pytorch/pytorch/issues/3492#issuecomment-382660636
if utils.get_platform() == "OS X":
mp.set_start_method('spawn', force=True)
if flags.viz == 1:
flags.num_processes = 1
tmp_label_path = os.path.join(flags.save_dir, 'labels.txt')
# label_path = os.path.join(flags.save_dir, 'tmp_labels.txt')
manager = mp.Manager()
q = manager.Queue()
start_index = restore_exist_labels(tmp_label_path)
timer = Timer(Timer.SECOND)
timer.start()
with mp.Pool(processes=get_num_processes(flags)) as pool:
if not flags.viz:
pool.apply_async(start_listen, (q, tmp_label_path))
pool.starmap(generate_img, zip(range(start_index, start_index + flags.num_img), repeat(q)))
q.put(STOP_TOKEN)
pool.close()
pool.join()
timer.end("Finish generate data")
if not flags.viz:
sort_labels(tmp_label_path, tmp_label_path)