-
Notifications
You must be signed in to change notification settings - Fork 3
/
rd_plot.py
executable file
·314 lines (288 loc) · 9.77 KB
/
rd_plot.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
#!/usr/bin/python3
# Copyright 2017-2020 Robert-André Mauchin
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# 3. Neither the name of the copyright holder nor the names of its
# contributors may be used to endorse or promote products derived from this
# software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
import os
import sys
import glob
import numpy as np
import pandas as pd
import matplotlib
matplotlib.use("Cairo")
import matplotlib.pyplot as plt
def generate_plots(path, requested_formats):
data = {}
subset_name = os.path.basename(path)
for format in requested_formats:
file = path + "/" + subset_name + "." + format + ".lossy.out"
data[format] = pd.read_csv(file, sep=":")
# SSIM
fig = plt.figure()
plt.figure(figsize=(25, 15))
plt.title("Quality according to SSIM in function of number of bits per pixel")
plt.suptitle(subset_name)
plt.xlabel("Bits per pixels")
plt.ylabel("Float SSIM")
plt.xscale("log")
plt.xlim([0.1, 5])
plt.ylim([0.96, 1])
plt.minorticks_on()
plt.grid(b=True, which="both", color="0.65", linestyle="--")
for format in data:
plt.plot(data[format]["avg_bpp"], data[format]["wavg_ssim_score"], label=format)
plt.legend()
plt.savefig(
path + "/" + subset_name + ".ssim.(" + ",".join(requested_formats) + ").svg"
)
plt.close(fig)
# CIEDE2000
fig = plt.figure()
plt.figure(figsize=(25, 15))
plt.title("Quality according to CIEDE2000 in function of number of bits per pixel")
plt.suptitle(subset_name)
plt.xlabel("Bits per pixels")
plt.ylabel("dB (CIEDE2000)")
plt.xscale("log")
plt.xlim([0.1, 5])
plt.ylim([30, 50])
plt.minorticks_on()
plt.grid(b=True, which="both", color="0.65", linestyle="--")
for format in data:
plt.plot(
data[format]["avg_bpp"], data[format]["wavg_ciede2000_score"], label=format
)
plt.legend()
plt.savefig(
path
+ "/"
+ subset_name
+ ".ciede2000.("
+ ",".join(requested_formats)
+ ").svg"
)
plt.close(fig)
# MS-SSIM
fig = plt.figure()
plt.figure(figsize=(25, 15))
plt.title("Quality according to MS-SSIM in function of number of bits per pixel")
plt.suptitle(subset_name)
plt.xlabel("Bits per pixels")
plt.ylabel("Float MS-SSIM")
plt.xscale("log")
plt.xlim([0.1, 5])
plt.ylim([0.85, 1.01])
plt.minorticks_on()
plt.grid(b=True, which="both", color="0.65", linestyle="--")
for format in data:
plt.plot(
data[format]["avg_bpp"], data[format]["wavg_msssim_score"], label=format
)
plt.legend()
plt.savefig(
path + "/" + subset_name + ".ms-ssim.(" + ",".join(requested_formats) + ").svg"
)
plt.close(fig)
fig = plt.figure()
plt.figure(figsize=(25, 15))
plt.title("Quality according to PSNR-HVS in function of number of bits per pixel")
plt.suptitle(subset_name)
plt.xlabel("Bits per pixels")
plt.ylabel("dB (PSNR-HVS)")
plt.xscale("log")
plt.xlim([0.1, 5])
plt.ylim([25, 50])
plt.minorticks_on()
plt.grid(b=True, which="both", color="0.65", linestyle="--")
for format in data:
plt.plot(
data[format]["avg_bpp"], data[format]["wavg_psnrhvs_score"], label=format
)
plt.legend()
plt.savefig(
path + "/" + subset_name + ".psnr-hvs.(" + ",".join(requested_formats) + ").svg"
)
plt.close(fig)
fig = plt.figure()
plt.figure(figsize=(25, 15))
plt.title("Quality according to VMAF in function of number of bits per pixel")
plt.suptitle(subset_name)
plt.xlabel("Bits per pixels")
plt.ylabel("Score (VMAF)")
plt.xscale("log")
plt.xlim([0.1, 5])
plt.ylim([75, 100])
plt.minorticks_on()
plt.grid(b=True, which="both", color="0.65", linestyle="--")
for format in data:
plt.plot(data[format]["avg_bpp"], data[format]["wavg_vmaf_score"], label=format)
plt.legend()
plt.savefig(
path + "/" + subset_name + ".vmaf.(" + ",".join(requested_formats) + ").svg"
)
plt.close(fig)
plt.close(fig)
fig = plt.figure()
plt.figure(figsize=(25, 15))
plt.title(
"Quality according to Butteraugli in function of number of bits per pixel"
)
plt.suptitle(subset_name)
plt.xlabel("Bits per pixels")
plt.ylabel("Error (Butteraugli)")
plt.xscale("log")
plt.yscale("log")
plt.xlim([0.1, 5])
plt.ylim([2, 25])
plt.minorticks_on()
plt.grid(b=True, which="both", color="0.65", linestyle="--")
for format in data:
plt.plot(
data[format]["avg_bpp"],
data[format]["wavg_butteraugli_score"],
label=format,
)
plt.legend()
plt.savefig(
path
+ "/"
+ subset_name
+ ".butteraugli.("
+ ",".join(requested_formats)
+ ").svg"
)
plt.close(fig)
fig = plt.figure()
plt.figure(figsize=(25, 15))
plt.title("Quality according to DSSIM in function of number of bits per pixel")
plt.suptitle(subset_name)
plt.xlabel("Bits per pixels")
plt.ylabel("Error (DSSIM)")
plt.xscale("log")
plt.yscale("log")
plt.xlim([0.1, 5])
plt.ylim([0.0001, 0.1])
plt.minorticks_on()
plt.grid(b=True, which="both", color="0.65", linestyle="--")
for format in data:
plt.plot(
data[format]["avg_bpp"], data[format]["wavg_dssim_score"], label=format
)
plt.legend()
plt.savefig(
path + "/" + subset_name + ".dssim.(" + ",".join(requested_formats) + ").svg"
)
plt.close(fig)
fig = plt.figure()
plt.figure(figsize=(25, 15))
plt.title("Quality according to SSimulacra in function of number of bits per pixel")
plt.suptitle(subset_name)
plt.xlabel("Bits per pixels")
plt.ylabel("Error (SSimulacra)")
plt.xscale("log")
plt.yscale("log")
plt.xlim([0.1, 5])
plt.ylim([0.02, 0.25])
plt.minorticks_on()
plt.grid(b=True, which="both", color="0.65", linestyle="--")
for format in data:
plt.plot(
data[format]["avg_bpp"], data[format]["wavg_ssimulacra_score"], label=format
)
plt.legend()
plt.savefig(
path
+ "/"
+ subset_name
+ ".ssimulacra.("
+ ",".join(requested_formats)
+ ").svg"
)
plt.close(fig)
fig = plt.figure()
plt.figure(figsize=(25, 15))
plt.title("Encoding time in function of average bpp")
plt.suptitle(subset_name)
plt.xlabel("Bits per pixel")
plt.ylabel("Time (s)")
plt.xscale("log")
plt.yscale("log")
plt.xlim([0.1, 5])
plt.ylim([0.01, 200])
plt.minorticks_on()
plt.grid(b=True, which="both", color="0.65", linestyle="--")
for format in data:
plt.plot(
data[format]["avg_bpp"], data[format]["wavg_encode_time"], label=format
)
plt.legend()
plt.savefig(
path
+ "/"
+ subset_name
+ ".encoding_time.("
+ ",".join(requested_formats)
+ ").svg"
)
plt.close(fig)
plt.close("all")
def main(argv):
if sys.version_info[0] < 3 and sys.version_info[1] < 5:
raise Exception("Python 3.5 or a more recent version is required.")
if len(argv) < 2 or len(argv) > 3:
print("Arg 1: Path to a subset with results generated by rd_average.py")
print(' For ex: rd_average.py "results/subset1"')
print("Arg 2: Comma-separated list of format to plot.")
print(' For ex: rd_average.py "results/subset1" "bpg,mozjpeg,flif,vp9"')
results_folder = os.path.normpath(argv[1])
subset = os.path.basename(results_folder)
if not os.path.isdir(results_folder) or not glob.glob(
results_folder + "/*.lossy.out"
):
print(
"Could not find all results file. Please make sure the path provided is correct."
)
return
available_formats = []
for f in glob.glob(results_folder + "/*.lossy.out"):
baseformat = os.path.basename(f).replace(".lossy.out", "").replace(f"{subset}.", "")
available_formats.append(baseformat)
try:
requested_formats = [format.strip() for format in argv[2].split(",")]
except IndexError:
requested_formats = available_formats
for format in requested_formats:
if format not in available_formats:
print(
"The format {} is not in the list of available formats {}".format(
format, available_formats
)
)
return
generate_plots(results_folder, requested_formats)
if __name__ == "__main__":
main(sys.argv)