forked from IceClear/IL-NIQE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_niqe.py
495 lines (401 loc) · 19.4 KB
/
run_niqe.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
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
import cv2
import math
import numpy as np
import os
import sys
from scipy.ndimage.filters import convolve
from scipy.signal import convolve2d
from scipy.special import gamma
from scipy.ndimage import correlate
import scipy.io
from scipy.stats import exponweib
from scipy.optimize import fmin
import time
# import ray
from matlab_resize import MATLABLikeResize
def reorder_image(img, input_order='HWC'):
"""Reorder images to 'HWC' order.
If the input_order is (h, w), return (h, w, 1);
If the input_order is (c, h, w), return (h, w, c);
If the input_order is (h, w, c), return as it is.
Args:
img (ndarray): Input image.
input_order (str): Whether the input order is 'HWC' or 'CHW'.
If the input image shape is (h, w), input_order will not have
effects. Default: 'HWC'.
Returns:
ndarray: reordered image.
"""
if input_order not in ['HWC', 'CHW']:
raise ValueError(f'Wrong input_order {input_order}. Supported input_orders are ' "'HWC' and 'CHW'")
if len(img.shape) == 2:
img = img[..., None]
if input_order == 'CHW':
img = img.transpose(1, 2, 0)
return img
def fitweibull(x):
def optfun(theta):
return -np.sum(np.log(exponweib.pdf(x, 1, theta[0], scale=theta[1], loc=0)))
logx = np.log(x)
shape = 1.2 / np.std(logx)
scale = np.exp(np.mean(logx) + (0.572 / shape))
return fmin(optfun, [shape, scale], xtol=0.01, ftol=0.01, disp=0)
def estimate_aggd_param(block):
"""Estimate AGGD (Asymmetric Generalized Gaussian Distribution) parameters.
Args:
block (ndarray): 2D Image block.
Returns:
tuple: alpha (float), beta_l (float) and beta_r (float) for the AGGD
distribution (Estimating the parames in Equation 7 in the paper).
"""
block = block.flatten()
gam = np.arange(0.2, 10.001, 0.001) # len = 9801
gam_reciprocal = np.reciprocal(gam)
r_gam = np.square(gamma(gam_reciprocal * 2)) / (gamma(gam_reciprocal) * gamma(gam_reciprocal * 3))
left_std = np.sqrt(np.mean(block[block < 0] ** 2))
right_std = np.sqrt(np.mean(block[block > 0] ** 2))
gammahat = left_std / right_std
rhat = (np.mean(np.abs(block))) ** 2 / np.mean(block ** 2)
rhatnorm = (rhat * (gammahat ** 3 + 1) * (gammahat + 1)) / ((gammahat ** 2 + 1) ** 2)
array_position = np.argmin((r_gam - rhatnorm) ** 2)
alpha = gam[array_position]
beta_l = left_std * np.sqrt(gamma(1 / alpha) / gamma(3 / alpha))
beta_r = right_std * np.sqrt(gamma(1 / alpha) / gamma(3 / alpha))
return (alpha, beta_l, beta_r)
def compute_feature(feature_list, block_posi):
"""Compute features.
Args:
feature_list(list): feature to be processed.
block_posi (turple): the location of 2D Image block.
Returns:
list: Features with length of 234.
"""
feat = []
data = feature_list[0][block_posi[0]:block_posi[1], block_posi[2]:block_posi[3]]
alpha_data, beta_l_data, beta_r_data = estimate_aggd_param(data)
feat.extend([alpha_data, (beta_l_data + beta_r_data) / 2])
# distortions disturb the fairly regular structure of natural images.
# This deviation can be captured by analyzing the sample distribution of
# the products of pairs of adjacent coefficients computed along
# horizontal, vertical and diagonal orientations.
shifts = [[0, 1], [1, 0], [1, 1], [1, -1]]
for i in range(len(shifts)):
shifted_block = np.roll(data, shifts[i], axis=(0, 1))
alpha, beta_l, beta_r = estimate_aggd_param(data * shifted_block)
# Eq. 8 in NIQE
mean = (beta_r - beta_l) * (gamma(2 / alpha) / gamma(1 / alpha))
feat.extend([alpha, mean, beta_l, beta_r])
for i in range(1, 4):
data = feature_list[i][block_posi[0]:block_posi[1], block_posi[2]:block_posi[3]]
shape, scale = fitweibull(data.flatten('F'))
feat.extend([scale, shape])
for i in range(4, 7):
data = feature_list[i][block_posi[0]:block_posi[1], block_posi[2]:block_posi[3]]
mu = np.mean(data)
sigmaSquare = np.var(data.flatten('F'))
feat.extend([mu, sigmaSquare])
for i in range(7, 85):
data = feature_list[i][block_posi[0]:block_posi[1], block_posi[2]:block_posi[3]]
alpha_data, beta_l_data, beta_r_data = estimate_aggd_param(data)
feat.extend([alpha_data, (beta_l_data + beta_r_data) / 2])
for i in range(85, 109):
data = feature_list[i][block_posi[0]:block_posi[1], block_posi[2]:block_posi[3]]
shape, scale = fitweibull(data.flatten('F'))
feat.extend([scale, shape])
return feat
def matlab_fspecial(shape=(3, 3), sigma=0.5):
"""
2D gaussian mask - should give the same result as MATLAB's
fspecial('gaussian',[shape],[sigma])
"""
m, n = [(ss - 1.) / 2. for ss in shape]
y, x = np.ogrid[-m:m + 1, -n:n + 1]
h = np.exp(-(x * x + y * y) / (2. * sigma * sigma))
h[h < np.finfo(h.dtype).eps * h.max()] = 0
sumh = h.sum()
if sumh != 0:
h /= sumh
return h
def gauDerivative(sigma):
halfLength = math.ceil(3 * sigma)
x, y = np.meshgrid(np.linspace(-halfLength, halfLength, 2 * halfLength + 1),
np.linspace(-halfLength, halfLength, 2 * halfLength + 1))
gauDerX = x * np.exp(-(x ** 2 + y ** 2) / 2 / sigma / sigma)
gauDerY = y * np.exp(-(x ** 2 + y ** 2) / 2 / sigma / sigma)
return gauDerX, gauDerY
def conv2(x, y, mode='same'):
return np.rot90(convolve2d(np.rot90(x, 2), np.rot90(y, 2), mode=mode), 2)
def logGabors(rows, cols, minWaveLength, sigmaOnf, mult, dThetaOnSigma):
nscale = 3 # Number of wavelet scales.
norient = 4 # Number of filter orientations.
thetaSigma = math.pi / norient / dThetaOnSigma # Calculate the standard deviation of the angular Gaussian function used to construct filters in the freq. plane.
if cols % 2 > 0:
xrange = np.linspace(-(cols - 1) / 2, (cols - 1) / 2, cols) / (cols - 1)
else:
xrange = np.linspace(-cols / 2, cols / 2 - 1, cols) / cols
if rows % 2 > 0:
yrange = np.linspace(-(rows - 1) / 2, (rows - 1) / 2, rows) / (rows - 1)
else:
yrange = np.linspace(-rows / 2, rows / 2 - 1, rows) / rows
x, y = np.meshgrid(xrange, yrange)
radius = np.sqrt(x ** 2 + y ** 2)
theta = np.arctan2(-y, x)
radius = np.fft.ifftshift(radius)
theta = np.fft.ifftshift(theta)
radius[0, 0] = 1
sintheta = np.sin(theta)
costheta = np.cos(theta)
logGabor = []
for s in range(nscale):
wavelength = minWaveLength * mult ** (s)
fo = 1.0 / wavelength
logGabor_s = np.exp((-(np.log(radius / fo)) ** 2) / (2 * np.log(sigmaOnf) ** 2))
logGabor_s[0, 0] = 0
logGabor.append(logGabor_s)
spread = []
for o in range(norient):
angl = o * math.pi / norient
ds = sintheta * np.cos(angl) - costheta * np.sin(angl)
dc = costheta * np.cos(angl) + sintheta * np.sin(angl)
dtheta = abs(np.arctan2(ds, dc))
spread.append(np.exp((-dtheta ** 2) / (2 * thetaSigma ** 2)))
filter = []
for s in range(nscale):
o_list = []
for o in range(norient):
o_list.append(logGabor[s] * spread[o])
filter.append(o_list)
return filter
# @ray.remote
def ilniqe(img, mu_pris_param, cov_pris_param, gaussian_window, principleVectors, meanOfSampleData, resize=True,
block_size_h=84, block_size_w=84):
"""Calculate IL-NIQE (Integrated Local Natural Image Quality Evaluator) metric.
Ref: A Feature-Enriched Completely Blind Image Quality Evaluator.
This implementation could produce almost the same results as the official
MATLAB codes: https://github.com/milestonesvn/ILNIQE
Note that we do not include block overlap height and width, since they are
always 0 in the official implementation.
Args:
img (ndarray): Input image whose quality needs to be computed. The
image must be a gray or Y (of YCbCr) image with shape (h, w).
Range [0, 255] with float type.
mu_pris_param (ndarray): Mean of a pre-defined multivariate Gaussian
model calculated on the pristine dataset.
cov_pris_param (ndarray): Covariance of a pre-defined multivariate
Gaussian model calculated on the pristine dataset.
gaussian_window (ndarray): A 7x7 Gaussian window used for smoothing the
image.
principleVectors (ndarray): Features from official .mat file.
meanOfSampleData (ndarray): Features from official .mat file.
block_size_h (int): Height of the blocks in to which image is divided.
Default: 84 (the official recommended value).
block_size_w (int): Width of the blocks in to which image is divided.
Default: 84 (the official recommended value).
"""
assert img.ndim == 3, ('Input image must be a color image with shape (h, w, c).')
# crop image
# img = img.astype(np.float64)
blockrowoverlap = 0
blockcoloverlap = 0
sigmaForGauDerivative = 1.66
KforLog = 0.00001
normalizedWidth = 524
minWaveLength = 2.4
sigmaOnf = 0.55
mult = 1.31
dThetaOnSigma = 1.10
scaleFactorForLoG = 0.87
scaleFactorForGaussianDer = 0.28
sigmaForDownsample = 0.9
infConst = 10000
nanConst = 2000
if resize:
# img = cv2.resize(img, (normalizedWidth, normalizedWidth), interpolation=cv2.INTER_AREA)
resize_func = MATLABLikeResize(output_shape=(normalizedWidth, normalizedWidth))
img = resize_func.resize_img(img)
img = np.clip(img, 0.0, 255.0)
h, w, _ = img.shape
num_block_h = math.floor(h / block_size_h)
num_block_w = math.floor(w / block_size_w)
img = img[0:num_block_h * block_size_h, 0:num_block_w * block_size_w]
O1 = 0.3 * img[:, :, 0] + 0.04 * img[:, :, 1] - 0.35 * img[:, :, 2]
O2 = 0.34 * img[:, :, 0] - 0.6 * img[:, :, 1] + 0.17 * img[:, :, 2]
O3 = 0.06 * img[:, :, 0] + 0.63 * img[:, :, 1] + 0.27 * img[:, :, 2]
RChannel = img[:, :, 0]
GChannel = img[:, :, 1]
BChannel = img[:, :, 2]
distparam = [] # dist param is actually the multiscale features
for scale in (1, 2): # perform on two scales (1, 2)
mu = convolve(O3, gaussian_window, mode='nearest')
sigma = np.sqrt(np.abs(convolve(np.square(O3), gaussian_window, mode='nearest') - np.square(mu)))
# normalize, as in Eq. 1 in the paper
structdis = (O3 - mu) / (sigma + 1)
dx, dy = gauDerivative(sigmaForGauDerivative / (scale ** scaleFactorForGaussianDer));
compRes = conv2(O1, dx + 1j * dy, 'same')
IxO1 = np.real(compRes)
IyO1 = np.imag(compRes)
GMO1 = np.sqrt(IxO1 ** 2 + IyO1 ** 2) + np.finfo(O1.dtype).eps
compRes = conv2(O2, dx + 1j * dy, 'same')
IxO2 = np.real(compRes)
IyO2 = np.imag(compRes)
GMO2 = np.sqrt(IxO2 ** 2 + IyO2 ** 2) + np.finfo(O2.dtype).eps
compRes = conv2(O3, dx + 1j * dy, 'same')
IxO3 = np.real(compRes)
IyO3 = np.imag(compRes)
GMO3 = np.sqrt(IxO3 ** 2 + IyO3 ** 2) + np.finfo(O3.dtype).eps
logR = np.log(RChannel + KforLog)
logG = np.log(GChannel + KforLog)
logB = np.log(BChannel + KforLog)
logRMS = logR - np.mean(logR)
logGMS = logG - np.mean(logG)
logBMS = logB - np.mean(logB)
Intensity = (logRMS + logGMS + logBMS) / np.sqrt(3)
BY = (logRMS + logGMS - 2 * logBMS) / np.sqrt(6)
RG = (logRMS - logGMS) / np.sqrt(2)
compositeMat = [structdis, GMO1, GMO2, GMO3, Intensity, BY, RG, IxO1, IyO1, IxO2, IyO2, IxO3, IyO3]
h, w = O3.shape
LGFilters = logGabors(h, w, minWaveLength / (scale ** scaleFactorForLoG), sigmaOnf, mult, dThetaOnSigma)
fftIm = np.fft.fft2(O3)
logResponse = []
partialDer = []
GM = []
for scaleIndex in range(3):
for oriIndex in range(4):
response = np.fft.ifft2(LGFilters[scaleIndex][oriIndex] * fftIm)
realRes = np.real(response)
imagRes = np.imag(response)
compRes = conv2(realRes, dx + 1j * dy, 'same')
partialXReal = np.real(compRes)
partialYReal = np.imag(compRes)
realGM = np.sqrt(partialXReal ** 2 + partialYReal ** 2) + np.finfo(partialXReal.dtype).eps
compRes = conv2(imagRes, dx + 1j * dy, 'same')
partialXImag = np.real(compRes)
partialYImag = np.imag(compRes)
imagGM = np.sqrt(partialXImag ** 2 + partialYImag ** 2) + np.finfo(partialXImag.dtype).eps
logResponse.append(realRes)
logResponse.append(imagRes)
partialDer.append(partialXReal)
partialDer.append(partialYReal)
partialDer.append(partialXImag)
partialDer.append(partialYImag)
GM.append(realGM)
GM.append(imagGM)
compositeMat.extend(logResponse)
compositeMat.extend(partialDer)
compositeMat.extend(GM)
feat = []
for idx_w in range(num_block_w):
for idx_h in range(num_block_h):
# process each block
block_posi = [idx_h * block_size_h // scale, (idx_h + 1) * block_size_h // scale,
idx_w * block_size_w // scale, (idx_w + 1) * block_size_w // scale]
feat.append(compute_feature(compositeMat, block_posi))
distparam.append(np.array(feat))
gauForDS = matlab_fspecial([math.ceil(6 * sigmaForDownsample), math.ceil(6 * sigmaForDownsample)],
sigmaForDownsample)
filterResult = convolve(O1, gauForDS, mode='nearest')
O1 = filterResult[0::2, 0::2]
filterResult = convolve(O2, gauForDS, mode='nearest')
O2 = filterResult[0::2, 0::2]
filterResult = convolve(O3, gauForDS, mode='nearest')
O3 = filterResult[0::2, 0::2]
filterResult = convolve(RChannel, gauForDS, mode='nearest')
RChannel = filterResult[0::2, 0::2]
filterResult = convolve(GChannel, gauForDS, mode='nearest')
GChannel = filterResult[0::2, 0::2]
filterResult = convolve(BChannel, gauForDS, mode='nearest')
BChannel = filterResult[0::2, 0::2]
distparam = np.concatenate(distparam, axis=1)
distparam = np.array(distparam)
# fit a MVG (multivariate Gaussian) model to distorted patch features
distparam[distparam > infConst] = infConst
meanMatrix = np.tile(meanOfSampleData, (1, distparam.shape[0]))
coefficientsViaPCA = np.matmul(principleVectors.T, (distparam.T - meanMatrix))
final_features = coefficientsViaPCA.T
mu_distparam = np.nanmean(final_features, axis=0)
mu_distparam[np.isnan(mu_distparam)] = nanConst
# use nancov. ref: https://ww2.mathworks.cn/help/stats/nancov.html
distparam_no_nan = final_features[~np.isnan(final_features).any(axis=1)]
cov_distparam = np.cov(distparam_no_nan, rowvar=False)
# compute niqe quality, Eq. 10 in NIQE
invcov_param = np.linalg.pinv((cov_pris_param + cov_distparam) / 2)
dist = []
for data_i in range(final_features.shape[0]):
currentFea = final_features[data_i, :]
currentFea = np.where(np.isnan(currentFea), mu_distparam, currentFea)
currentFea = np.expand_dims(currentFea, axis=0)
quality = np.matmul(
np.matmul((currentFea - mu_pris_param), invcov_param), np.transpose((currentFea - mu_pris_param)))
dist.append(np.sqrt(quality))
score = np.mean(np.array(dist))
return score
def calculate_ilniqe(img, crop_border, input_order='HWC', num_cpus=3, resize=True, version='python', **kwargs):
"""Calculate IL-NIQE (Integrated Local Natural Image Quality Evaluator) metric.
Args:
img (ndarray): Input image whose quality needs to be computed.
The input image must be in range [0, 255] with float/int type in RGB space.
The input_order of image can be 'HWC' or 'CHW'. (BGR order)
If the input order is 'HWC' or 'CHW', it will be reorder to 'HWC'.
crop_border (int): Cropped pixels in each edge of an image. These
pixels are not involved in the metric calculation.
input_order (str): Whether the input order is 'HW', 'HWC' or 'CHW'.
Default: 'HWC'.
Returns:
float: IL-NIQE result.
"""
ROOT_DIR = os.path.dirname(os.path.abspath(__file__))
# we use the official params estimated from the pristine dataset.
gaussian_window = matlab_fspecial((5, 5), 5 / 6)
gaussian_window = gaussian_window / np.sum(gaussian_window)
if version == 'python':
model_mat = scipy.io.loadmat(os.path.join(ROOT_DIR, 'python_templateModel.mat')) # trained using python code
else:
model_mat = scipy.io.loadmat(os.path.join(ROOT_DIR, 'templateModel.mat')) # trained using official Matlab
mu_pris_param = model_mat['templateModel'][0][0]
cov_pris_param = model_mat['templateModel'][0][1]
meanOfSampleData = model_mat['templateModel'][0][2]
principleVectors = model_mat['templateModel'][0][3]
img = cv2.cvtColor(img, cv2.COLOR_BGR2RGB)
img = img.astype(np.float64)
if input_order != 'HW':
img = reorder_image(img, input_order=input_order)
img = np.squeeze(img)
assert img.shape[2] == 3 # only for RGB image
if crop_border != 0:
img = img[crop_border:-crop_border, crop_border:-crop_border]
# round is necessary for being consistent with MATLAB's result
img = img.round()
# ray.init(num_cpus=num_cpus)
# task_id = ilniqe.remote(img, mu_pris_param, cov_pris_param, gaussian_window, principleVectors, meanOfSampleData)
# ilniqe_result = ray.get(task_id)
ilniqe_result = ilniqe(img, mu_pris_param, cov_pris_param, gaussian_window, principleVectors, meanOfSampleData,
resize)
if isinstance(ilniqe_result, complex) and ilniqe_result.imag == 0:
ilniqe_result = ilniqe_result.real
return ilniqe_result
def run_niqe(img_path):
img = cv2.imread(img_path)
with warnings.catch_warnings():
warnings.simplefilter('ignore', category=RuntimeWarning)
time_start = time.time()
niqe_result = calculate_ilniqe(img, 0, input_order='HWC', resize=True, version='python')
time_used = time.time() - time_start
print(f"File: {img_path}, score: {niqe_result}")
print(f'\t time used in sec: {time_used:.4f}')
return niqe_result
if __name__ == '__main__':
import warnings
# img_path = './pepper_exa/pepper_4.png'
img_path = sys.argv[1]
if os.path.isfile(img_path):
print(f"{img_path} is a file")
run_niqe(img_path)
elif os.path.isdir(img_path):
total_run_niqe = 0
print(f"{img_path} is a directory")
file_list = [os.path.join(img_path, f) for f in os.listdir(img_path) if os.path.isfile(os.path.join(img_path, f))]
for file in file_list:
total_run_niqe = total_run_niqe + run_niqe(file)
print(f"avg score: {total_run_niqe / len(file_list)}")
else:
print(f"{img_path} is not a valid file or directory")