-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathplot-distributions.py
398 lines (312 loc) · 13.9 KB
/
plot-distributions.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
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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
#!/usr/bin/python
# System imports
import sys, os, re, math
import subprocess
import argparse
import numpy as np
import seaborn as sns
import pandas as pd
import matplotlib
import matplotlib.pyplot as plt
import matplotlib.font_manager
from matplotlib.ticker import PercentFormatter
from matplotlib.ticker import FormatStrFormatter
FILE_TYPES = ['.png']
FILE_TYPE = '.png'
sns.set(color_codes=True)
'''
sns.set_style("whitegrid",
{'axes.axisbelow': True,
'axes.edgecolor': '.8',
'axes.facecolor': 'white',
'axes.grid': False,
'axes.labelcolor': '.6',
'axes.linewidth': 0.0,
'font.family': 'Arimo',
'grid.color': '.8',
'grid.linestyle': u'-',
'image.cmap': u'Greys',
'legend.frameon': True,
'legend.numpoints': 1,
'legend.scatterpoints': 1,
'lines.solid_capstyle': u'round',
'text.color': '.15',
'xtick.color': '.15',
'xtick.direction': u'out',
'xtick.major.size': 0.0,
'xtick.minor.size': 0.0,
'ytick.color': '.15',
'ytick.direction': u'out',
'ytick.major.size': 0.0,
'ytick.minor.size': 0.0
}
)
'''
# Colors
# b: blue
# g: green
# r: red
# c: cyan
# m: magenta
# y: yellow
# k: black
# w: white
####################################################################################################
# @verify_plotting_packages
####################################################################################################
def verify_plotting_packages():
"""Verifies that all the plotting packages are installed. Otherwise, install the missing one.
"""
import matplotlib
from matplotlib import font_manager
# Import the fonts
font_dirs = [os.path.dirname(os.path.realpath(__file__)) + '/fonts/' ]
font_files = font_manager.findSystemFonts(fontpaths=font_dirs)
font_list = font_manager.createFontList(font_files)
font_manager.fontManager.ttflist.extend(font_list)
sns.set_style("whitegrid")
plt.rcParams['axes.grid'] = 'False'
plt.rcParams['font.family'] = 'NimbusSanL'
plt.rcParams['font.monospace'] = 'Regular'
plt.rcParams['font.style'] = 'normal'
plt.rcParams['axes.linewidth'] = 0.0
plt.rcParams['axes.labelsize'] = 30
plt.rcParams['axes.labelweight'] = 'bold'
plt.rcParams['xtick.labelsize'] = 30
plt.rcParams['ytick.labelsize'] = 30
plt.rcParams['legend.fontsize'] = 30
plt.rcParams['figure.titlesize'] = 30
plt.rcParams['axes.titlesize'] = 30
# plt.rcParams['xtick.major.size'] = 1
# plt.rcParams['xtick.minor.size'] = 0.50
# plt.rcParams['xtick.direction'] = u'out'
####################################################################################################
# @parse_command_line_arguments
####################################################################################################
def parse_command_line_arguments(arguments=None):
# Add all the options
description = 'Plotting'
parser = argparse.ArgumentParser(description=description)
arg_help = 'Input file'
parser.add_argument('--input', action='store', dest='input', help=arg_help)
arg_help = 'Output directory where output written'
parser.add_argument('--output', action='store', dest='output', help=arg_help)
# Parse the arguments
return parser.parse_args()
####################################################################################################
# @read_dist_file
####################################################################################################
def read_dist_file(file_path, invert=False):
data = list()
file = open(file_path, 'r')
for line in file:
content = line.strip(' ').split(' ')
value = float(content[1])
if invert:
value = 1.0 / value
data.append(value)
file.close()
return data
####################################################################################################
# @ plot_dist_file
####################################################################################################
def plot_dist_file(input_directory,
dist_file,
output_directory,
title,
plot_titles=True,
xmax=100,
decimals=1,
kde=False,
color='b',
invert=False):
print('\t* ' + title)
# Clear figure
plt.clf()
# Get the data list
data = read_dist_file('%s/%s' % (input_directory, dist_file), invert=invert)
# Convert the data to numpy array
np_data = np.array(data)
# Adjust the Y-axis format
plt.gca().yaxis.set_major_formatter(PercentFormatter(xmax=xmax, decimals=decimals, symbol=' %'))
# Set the title
if plot_titles:
plt.title(title)
# Plot the histogram
sns.distplot(np_data, color='r', hist=True, kde=kde, norm_hist=True, bins=50,
hist_kws={"color": color, "lw": 0.5},
kde_kws={"color": color, "lw": 0.5})
# Save the figure
for file_type in FILE_TYPES:
plt.savefig('%s/%s' % (output_directory, dist_file.replace('.dist', file_type)), dpi=300, bbox_inches='tight')
# Close figure to reset
plt.close()
####################################################################################################
# @get_image
####################################################################################################
def get_image(images, search_keyword, measure):
for file in images:
if 'stats' in file:
continue
keyword = '%s-%s.' % (search_keyword, measure)
if keyword in file:
if '.png' in file:
return file
return None
####################################################################################################
# @get_stats_image
####################################################################################################
def get_stats_image(images, search_keyword, measure):
for file in images:
keyword = '%s-%s.' % (search_keyword, measure)
if keyword in file:
return file
return None
####################################################################################################
# @stack_images
####################################################################################################
def stack_images(directory, search_keyword):
all_files = os.listdir(directory)
image_files = list()
image_files.append(get_image(all_files, search_keyword, 'condition-number'))
image_files.append(get_image(all_files, search_keyword, 'aspect-forbenius'))
image_files.append(get_image(all_files, search_keyword, 'radius-ratio'))
image_files.append(get_image(all_files, search_keyword, 'edge-ratio'))
image_files.append(get_image(all_files, search_keyword, 'radius-to-edge-ratio'))
image_files.append(get_image(all_files, search_keyword, 'min-angle'))
image_files.append(get_image(all_files, search_keyword, 'max-angle'))
image_files.append(get_image(all_files, search_keyword, 'relative-size'))
image_files.append(get_image(all_files, search_keyword, 'triangle-shape'))
image_files.append(get_image(all_files, search_keyword, 'triangle-shape-size'))
image_files.append(get_image(all_files, search_keyword, 'scaled-jacobian'))
shell_command_images = ''
for image in image_files:
if image is None:
continue
shell_command_images += ' %s/%s ' % (directory, image)
subprocess.call('convert ' + shell_command_images + ' -append %s/summary-%s-stats%s' %
(directory, search_keyword, FILE_TYPE), shell=True)
shell_command = 'montage ' + shell_command_images + \
' -tile 5x2 -geometry +0+0 %s/hotizontal-%s-stats%s' % (directory, search_keyword, FILE_TYPE)
print(shell_command)
subprocess.call(shell_command, shell=True)
####################################################################################################
# @stack_groups
####################################################################################################
def stack_groups(directory):
all_files = os.listdir(directory)
summary_files = list()
for file in all_files:
if 'summary' in file:
summary_files.append(file)
image_files = list()
image_files.append(get_stats_image(summary_files, 'summary', 'input-stats'))
image_files.append(get_stats_image(summary_files, 'summary', 'dmc-stats'))
image_files.append(get_stats_image(summary_files, 'summary', 'optimized-stats'))
image_files.append(get_stats_image(summary_files, 'summary', 'watertight-stats'))
shell_command_images = 'convert '
for image in image_files:
if image is None:
continue
shell_command_images += ' %s/%s ' % (directory, image)
shell_command = 'montage ' + shell_command_images + \
' -tile 4x1 -geometry +0+0 %s/vertical-%s-stats%s' % (directory, 'all', FILE_TYPE)
print(shell_command)
subprocess.call(shell_command, shell=True)
####################################################################################################
# @plot_group
####################################################################################################
def plot_group(keyword, dist_files, plot_titles=False, use_kde=False):
for file in dist_files:
if keyword in file:
if 'edge-ratio' in file:
plot_dist_file(args.input, file, args.output,
title='Edge Ratio', color='y', kde=use_kde, plot_titles=plot_titles, invert=True)
if 'min-angle' in file:
plot_dist_file(args.input, file, args.output,
title='Min. Dihedral Angle (Degrees)', xmax=1, color='skyblue',
kde=use_kde, plot_titles=plot_titles)
if 'max-angle' in file:
plot_dist_file(args.input, file, args.output,
title='Max. Dihedral Angle (Degrees)', xmax=1, color="olive",
kde=use_kde, plot_titles=plot_titles)
if 'aspect-ratio' in file:
plot_dist_file(args.input, file, args.output,
title='Aspect Ratio', color='green', kde=use_kde, plot_titles=plot_titles)
if 'distortion' in file:
plot_dist_file(args.input, file, args.output,
title='Distortion', color='green', kde=use_kde, plot_titles=plot_titles)
if 'aspect-forbenius' in file:
plot_dist_file(args.input, file, args.output,
title='Aspect Forbenius', color='gold', kde=use_kde, plot_titles=plot_titles)
if 'radius-ratio' in file:
plot_dist_file(args.input, file, args.output,
title='Radius Ratio', color='red', kde=use_kde, plot_titles=plot_titles, invert=True)
if 'radius-to-edge-ratio' in file:
plot_dist_file(args.input, file, args.output,
title='Radius to Edge Ratio', color='teal', kde=use_kde, plot_titles=plot_titles, invert=True)
if 'condition-number' in file:
plot_dist_file(args.input, file, args.output,
title='Condition Number', color='m', kde=use_kde, plot_titles=plot_titles)
if 'relative-size' in file:
plot_dist_file(args.input, file, args.output,
title='Relative Size', color='firebrick', kde=use_kde, plot_titles=plot_titles)
if 'triangle-shape' in file:
plot_dist_file(args.input, file, args.output,
title='Shape', color='orchid', kde=use_kde, plot_titles=plot_titles)
if 'triangle-shape-size' in file:
plot_dist_file(args.input, file, args.output,
title='Shape & Size', color='royalblue', kde=use_kde, plot_titles=plot_titles)
if 'scaled-jacobian' in file:
plot_dist_file(args.input, file, args.output,
title='Scaled Jacobian', color='darkgreen', kde=use_kde, plot_titles=plot_titles)
stack_images(args.output, keyword)
####################################################################################################
# @read_dist_file
####################################################################################################
def read_sample_file(file_path):
data = list()
file = open(file_path, 'r')
for line in file:
content = line.strip(' ').split(' ')
index = int(content[0])
value = float(content[1])
file.close()
return data
####################################################################################################
# @ Main
####################################################################################################
if __name__ == "__main__":
# Parse the command line arguments
args = parse_command_line_arguments()
all_files = os.listdir(args.input)
dist_files = list()
for file in all_files:
if '.dist' in file:
dist_files.append(file)
plot_titles = True
use_kde = False
verify_plotting_packages()
try:
print('input')
plot_group('input', dist_files, plot_titles=plot_titles, use_kde=use_kde)
except ValueError:
pass
try:
print('dmc')
plot_group('dmc', dist_files, plot_titles=plot_titles, use_kde=use_kde)
except ValueError:
pass
try:
print('optimized')
plot_group('optimized', dist_files, plot_titles=plot_titles, use_kde=use_kde)
except ValueError:
pass
try:
print('watertight')
plot_group('watertight', dist_files, plot_titles=plot_titles, use_kde=use_kde)
except ValueError:
pass
#print('group')
#stack_groups(args.output)
#read_sample_file('/data/meshes/remeshing/astro1-watertight-edge-ratio.dist')