forked from spmallick/learnopencv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerate_images.py
138 lines (99 loc) · 4.66 KB
/
generate_images.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
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
import os
import random
import numpy as np
import uuid
PATH_TO_LIGHT_BACKGROUNDS = 'light_backgrounds/'
PATH_TO_DARK_BACKGROUNDS = 'dark_backgrounds/'
PATH_TO_FONT_FILES = 'fonts/'
OUTPUT_DIR = 'output/'
NUM_IMAGES_PER_CLASS = 10
# Get all files from directory
def get_files_from_dir(dirname):
list_files = (os.listdir(dirname))
list_files = [dirname + x for x in list_files]
return list_files
# Random perspective distortion created by randomly moving the for corners of the image.
def get_distort_arg():
amount = 5
hundred_minus_amount = 100 - amount
return '\'0,0 ' + str(np.random.randint(0,amount)) + ',' + str(np.random.randint(0,amount)) + ' 100,0 ' + str(np.random.randint(hundred_minus_amount,100)) + ',' + str(np.random.randint(0,amount)) + ' 0,100 ' + str(np.random.randint(0,amount)) + ',' + str(np.random.randint(hundred_minus_amount,100)) + ' 100,100 ' + str(np.random.randint(hundred_minus_amount,100)) + ',' + str(np.random.randint(hundred_minus_amount,100)) + '\''
# Randomly extracts 32x32 regions of an image and saves it to outdir
def create_random_crops(image_filename, num_crops, out_dir):
dim = os.popen('convert ' + image_filename + ' -ping -format "%w %h" info:').read()
dim = dim.split()
im_width = int(dim[0])
im_height = int(dim[1])
for i in range(0, num_crops):
# Randomly select first co-ordinate of square for cropping image
x = random.randint(0,im_width - 32)
y = random.randint(0,im_height - 32)
outfile = uuid.uuid4().hex + '.jpg'
command = "magick convert "+ image_filename + " -crop 32x32"+"+"+str(x)+"+"+str(y)+" " + os.path.join(out_dir, outfile)
os.system(str(command))
# Generate crops for all files in file_list and store them in dirname
def generate_crops(file_list, dirname):
if not os.path.isdir(dirname):
os.mkdir(dirname)
for f in file_list:
create_random_crops(f, 10, dirname)
# List of characters
char_list = []
for i in range(65, 65+26):
char_list.append(chr(i))
# List of digits
for j in range(48,48+10):
char_list.append(chr(j))
# List of light font colors
color_light = ['white','lime','gray','yellow','silver','aqua']
# List of light dark colors
color_dark = ['black','green','maroon','blue','purple','red']
# List of light backgrounds
light_backgrounds = get_files_from_dir(PATH_TO_LIGHT_BACKGROUNDS)
# List of dark backgrounds
dark_backgrounds = get_files_from_dir(PATH_TO_DARK_BACKGROUNDS)
# List of font files
list_files_fontt = get_files_from_dir(PATH_TO_FONT_FILES)
light_backgrounds_crops_dir = 'light_backgrounds_crops/'
dark_backgrounds_crops_dir = 'dark_backgrounds_crops/'
generate_crops(light_backgrounds, light_backgrounds_crops_dir)
generate_crops(dark_backgrounds, dark_backgrounds_crops_dir)
# List of all files in the crops directory
light_backgrounds = get_files_from_dir(light_backgrounds_crops_dir)
dark_backgrounds = get_files_from_dir(dark_backgrounds_crops_dir)
# List of all backgrounds
all_backgrounds = [dark_backgrounds, light_backgrounds]
# Sample Command----- magick convert image.jpg -fill Black -font Courier-Oblique -weight 50 -pointsize 12 -gravity center -blur 0x8 -evaluate Gaussian-noise 1.2 -annotate 0+0 "Some text" output_image
for i in range(0,len(char_list)):
char = char_list[i]
char_output_dir = OUTPUT_DIR + str(char) + "/"
if not os.path.exists(char_output_dir):
os.makedirs(char_output_dir)
print("Generating data " + char_output_dir)
# Generate synthetic images
for j in range(0,NUM_IMAGES_PER_CLASS):
# Choose a light or dark background
path = random.choice(all_backgrounds)
# Choose a file
list_filernd = random.choice(path)
# Choose a font
list_rfo = random.choice(list_files_fontt)
# Get random distortion
distort_arg = get_distort_arg()
# Get random blur amount
blur = random.randint(0,3)
# Get random noise amount
noise = random.randint(0,5)
# Add random shifts from the center
x = str(random.randint(-3,3))
y = str(random.randint(-3,3))
# Choose light color for dark backgrounds and vice-versa
if path == all_backgrounds[0] :
color = random.choice(color_light)
else:
color = random.choice(color_dark)
command = "magick convert " + str(list_filernd) + " -fill "+str(color)+" -font "+ \
str(list_rfo) + " -weight 200 -pointsize 24 -distort Perspective "+str(distort_arg)+" "+"-gravity center" + " -blur 0x" + str(blur) \
+ " -evaluate Gaussian-noise " + str(noise) + " " + " -annotate +" + x + "+" + y + " " + str(char_list[i]) + " " + char_output_dir + "output_file"+str(i)+str(j)+".jpg"
# Uncomment line below to see what command is executed.
# print(command)
os.system(str(command))