-
Notifications
You must be signed in to change notification settings - Fork 0
/
hdr_chipqa.py
executable file
·315 lines (241 loc) · 11.5 KB
/
hdr_chipqa.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
from utils.hdr_utils import yuv_read
from utils import colour_utils
import numpy as np
import cv2
import os
import scipy.ndimage
import joblib
import ChipQA.niqe
import ChipQA.save_stats
from numba import jit
import argparse
parser = argparse.ArgumentParser(description='Generate HDR ChipQA features from a single video')
parser.add_argument('--input_file',help='Input video file')
parser.add_argument('--results_file',help='File where features are stored')
parser.add_argument('--width', type=int)
parser.add_argument('--height', type=int)
parser.add_argument('--bit_depth', type=int,choices={8,10,12})
parser.add_argument('--color_space',choices={'BT2020','BT709'})
args = parser.parse_args()
def gen_gauss_window(lw, sigma):
sd = np.float32(sigma)
lw = int(lw)
weights = [0.0] * (2 * lw + 1)
weights[lw] = 1.0
sum = 1.0
sd *= sd
for ii in range(1, lw + 1):
tmp = np.exp(-0.5 * np.float32(ii * ii) / sd)
weights[lw + ii] = tmp
weights[lw - ii] = tmp
sum += 2.0 * tmp
for ii in range(2 * lw + 1):
weights[ii] /= sum
return weights
def spatiotemporal_mscn(img_buffer,avg_window,extend_mode='reflect'):
st_mean = np.zeros((img_buffer.shape))
scipy.ndimage.correlate1d(img_buffer, avg_window, 0, st_mean, mode=extend_mode)
return st_mean
@jit(nopython=True)
def find_kurtosis_slice(Y3d_mscn,cy,cx,rst,rct,theta,h,step):
st_kurtosis = np.zeros((len(theta),))
data = np.zeros((len(theta),step**2))
for index,t in enumerate(theta):
rsin_theta = rst[:,index]
rcos_theta =rct[:,index]
x_sts,y_sts = cx+rcos_theta,cy+rsin_theta
data[index,:] =Y3d_mscn[:,y_sts*h+x_sts].flatten()
data_mu4 = np.mean((data[index,:]-np.mean(data[index,:]))**4)
data_var = np.var(data[index,:])
st_kurtosis[index] = data_mu4/(data_var**2+1e-4)
idx = (np.abs(st_kurtosis - 3)).argmin()
data_slice = data[idx,:]
return data_slice
def find_kurtosis_sts(grad_img_buffer,step,cy,cx,rst,rct,theta):
w = grad_img_buffer[step-1].shape[1]
gradY3d_mscn = np.reshape(grad_img_buffer.copy(),(step,-1))
sts_grad= [find_kurtosis_slice(gradY3d_mscn,cy[i],cx[i],rst,rct,theta,w,step) for i in range(len(cy))]
return sts_grad
def Y_compute_lnl(Y):
if(len(Y.shape)==2):
Y = np.expand_dims(Y,axis=2)
maxY = scipy.ndimage.maximum_filter(Y,size=(17,17,1))
minY = scipy.ndimage.minimum_filter(Y,size=(17,17,1))
Y_scaled = -1+(Y-minY)* 2/(1e-3+maxY-minY)
Y_transform = np.exp(np.abs(Y_scaled)*4)-1
Y_transform[Y_scaled<0] = -Y_transform[Y_scaled<0]
return Y_transform
def unblockshaped(arr, h, width):
"""
Return an array of shape (h, width) where
h * width = arr.size
If arr is of shape (n, nrows, ncols), n sublocks of shape (nrows, ncols),
then the returned array preserves the "physical" layout of the sublocks.
"""
n, nrows, ncols = arr.shape
return (arr.reshape(h//nrows, -1, nrows, ncols)
.swapaxes(1,2)
.reshape(h, width))
def hdrchipqa_fromvid(filename,filename_out,width,height,framenos,bit_depth,color_space):
if(os.path.exists(filename)==False):
print("Input video file does not exist")
return
if(os.path.exists(filename_out)):
print("Output feature file already exists")
return
## PARAMETERS for the model
st_time_length = 5
t = np.arange(0,st_time_length)
a=0.5
# temporal filter
avg_window = t*(1-a*t)*np.exp(-2*a*t)
avg_window = np.flip(avg_window)
# LUT for coordinate search
theta = np.arange(0,np.pi,np.pi/6)
ct = np.cos(theta)
st = np.sin(theta)
lower_r = int((st_time_length+1)/2)-1
higher_r = int((st_time_length+1)/2)
r = np.arange(-lower_r,higher_r)
rct = np.round(np.outer(r,ct))
rst = np.round(np.outer(r,st))
rct = rct.astype(np.int32)
rst = rst.astype(np.int32)
#percent by which the image is resized
scale_percent = 0.5
# dsize
dsize = (int(scale_percent*height),int(scale_percent*width))
# ST chip centers and parameters
step = st_time_length
cy, cx = np.mgrid[step:height-step*4:step*4, step:width-step*4:step*4].reshape(2,-1).astype(int) # these will be the centers of each block
dcy, dcx = np.mgrid[step:dsize[0]-step*4:step*4, step:dsize[1]-step*4:step*4].reshape(2,-1).astype(int) # these will be the centers of each block
r1 = len(np.arange(step,height-step*4,step*4))
r2 = len(np.arange(step,width-step*4,step*4))
dr1 = len(np.arange(step,dsize[0]-step*4,step*4))
dr2 = len(np.arange(step,dsize[1]-step*4,step*4))
# declare buffers for ST Chips
grad_img_buffer = np.zeros((st_time_length,height,width))
graddown_img_buffer =np.zeros((st_time_length,int(height/2),int(width/2)))
i = 0
X_list = []
spatavg_list = []
feat_sd_list = []
sd_list= []
for framenum in range(framenos):
try:
# Read YUV frame
Y_pq,U_pq,V_pq = yuv_read(filename,framenum,height,width,bit_depth)
YUV = np.stack((Y_pq,U_pq,V_pq),axis=2)
if(bit_depth==10):
YUV_norm = YUV.astype(np.float32)/1023.0
C = 4
elif(bit_depth==8):
YUV_norm = YUV.astype(np.float32)/255.0
C = 1
elif(bit_depth==12):
YUV_norm = YUV.astype(np.float32)/4095.0
C = 16
# downsample YUV
YUV_down_norm = cv2.resize(YUV_norm,(dsize[1],dsize[0]),interpolation=cv2.INTER_LANCZOS4)
except Exception as e:
print(e)
break
# convert YUV to RGB
if(color_space=='BT2020'):
rgb = colour_utils.YCbCr_to_RGB(YUV_norm,K = [0.2627,0.0593])
rgb_down = colour_utils.YCbCr_to_RGB(YUV_down_norm,K = [0.2627,0.0593])
elif(color_space=='BT709'):
rgb = colour_utils.YCbCr_to_RGB(YUV_norm,K = [0.2126,0.0722])
rgb_down = colour_utils.YCbCr_to_RGB(YUV_down_norm,K = [0.2126,0.0722])
# NSS features for Y
Y_pq = Y_pq.astype(np.float32)
Y_down_pq = cv2.resize(Y_pq,(dsize[1],dsize[0]),interpolation=cv2.INTER_LANCZOS4)
Y_mscn,_,_ = ChipQA.save_stats.compute_image_mscn_transform(Y_pq,C)
dY_mscn,_,_ = ChipQA.save_stats.compute_image_mscn_transform(Y_down_pq,C)
brisque_fullscale = ChipQA.save_stats.extract_subband_feats(Y_mscn)
brisque_halfscale = ChipQA.save_stats.extract_subband_feats(dY_mscn)
brisque = np.concatenate((brisque_fullscale,brisque_halfscale),axis=0)
# NSS features for nonlinear transformed Y
Y_pq_nl = np.squeeze(Y_compute_lnl(Y_pq))
Y_down_pq_nl = np.squeeze(Y_compute_lnl(Y_down_pq))
Y_mscn_pq_nl,_,_ = ChipQA.save_stats.compute_image_mscn_transform(Y_pq_nl,C=0.001)
dY_mscn_pq_nl,_,_ = ChipQA.save_stats.compute_image_mscn_transform(Y_down_pq_nl,C=0.001)
brisque_nl_fullscale = ChipQA.save_stats.extract_subband_feats(Y_mscn_pq_nl)
brisque_nl_halfscale = ChipQA.save_stats.extract_subband_feats(dY_mscn_pq_nl)
brisque_nl = np.concatenate((brisque_nl_fullscale,brisque_nl_halfscale),axis=0)
# compute gradient magnitude
gradient_x = cv2.Sobel(Y_pq,ddepth=-1,dx=1,dy=0)
gradient_y = cv2.Sobel(Y_pq,ddepth=-1,dx=0,dy=1)
gradient_mag = np.sqrt(gradient_x**2+gradient_y**2)
gradient_x_down = cv2.Sobel(Y_down_pq,ddepth=-1,dx=1,dy=0)
gradient_y_down = cv2.Sobel(Y_down_pq,ddepth=-1,dx=0,dy=1)
gradient_mag_down = np.sqrt(gradient_x_down**2+gradient_y_down**2)
gradY_mscn,_,_ = ChipQA.save_stats.compute_image_mscn_transform(gradient_mag,C)
dgradY_mscn,_,_ = ChipQA.save_stats.compute_image_mscn_transform(gradient_mag_down,C)
# store gradient mscns in buffer
grad_img_buffer[i,:,:] =gradY_mscn
graddown_img_buffer[i,:,:]=dgradY_mscn
i=i+1
# compute nonlinearity for RGB
rgb_nl = Y_compute_lnl(rgb)
rgb_nl_down = Y_compute_lnl(rgb_down)
rgb_features = np.zeros((3,36))
rgb_features_nl = np.zeros((3,36))
# compute NSS features for RGB
for chroma_index in range(3):
rgb_mscn,_,_ = ChipQA.save_stats.compute_image_mscn_transform(rgb[:,:,chroma_index],C=0.001)
rgb_mscn_down,_,_ = ChipQA.save_stats.compute_image_mscn_transform(rgb_down[:,:,chroma_index],C=0.001)
rgb_fullscale = ChipQA.save_stats.extract_subband_feats(rgb_mscn)
rgb_halfscale = ChipQA.save_stats.extract_subband_feats(rgb_mscn_down)
rgb_features[chroma_index,:] = np.concatenate((rgb_fullscale,rgb_halfscale),axis=0)
rgb_nl_mscn,_,_ = ChipQA.save_stats.compute_image_mscn_transform(rgb_nl[:,:,chroma_index],C=0.001)
rgb_nl_mscn_down,_,_ = ChipQA.save_stats.compute_image_mscn_transform(rgb_nl_down[:,:,chroma_index],C=0.001)
rgb_fullscale_nl = ChipQA.save_stats.extract_subband_feats(rgb_nl_mscn)
rgb_halfscale_nl = ChipQA.save_stats.extract_subband_feats(rgb_nl_mscn_down)
rgb_features_nl[chroma_index,:] = np.concatenate((rgb_fullscale_nl,rgb_halfscale_nl),axis=0)
feats = np.concatenate((brisque,brisque_nl,rgb_features.flatten(),rgb_features_nl.flatten()),0)
feat_sd_list.append(feats)
spatavg_list.append(feats)
# compute ST Gradient chips and rolling standard deviation
if (i>=st_time_length):
# temporal filtering
grad3d_mscn = spatiotemporal_mscn(grad_img_buffer,avg_window)
graddown3d_mscn = spatiotemporal_mscn(graddown_img_buffer,avg_window)
# compute rolling standard deviation
sd_feats = np.std(feat_sd_list,axis=0)
sd_list.append(sd_feats)
feat_sd_list = []
# ST chips
sts_grad = find_kurtosis_sts(grad3d_mscn,step,cy,cx,rst,rct,theta)
dsts_grad = find_kurtosis_sts(graddown3d_mscn,step,dcy,dcx,rst,rct,theta)
sts_grad= unblockshaped(np.reshape(sts_grad,(-1,st_time_length,st_time_length)),r1*st_time_length,r2*st_time_length)
dsts_grad= unblockshaped(np.reshape(dsts_grad,(-1,st_time_length,st_time_length)),dr1*st_time_length,dr2*st_time_length)
grad_feats = ChipQA.save_stats.extract_subband_feats(sts_grad)
dgrad_feats = ChipQA.save_stats.extract_subband_feats(dsts_grad)
allst_feats = np.concatenate((grad_feats,dgrad_feats),axis=0)
X_list.append(allst_feats)
# refresh buffer
grad_img_buffer = np.zeros((st_time_length,height,width))
graddown_img_buffer =np.zeros((st_time_length,int(height/2),int(width/2)))
i=0
# average features and save to file
X1 = np.average(spatavg_list,axis=0)
X2 = np.average(sd_list,axis=0)
X3 = np.average(X_list,axis=0)
X = np.concatenate((X1,X2,X3),axis=0)
train_dict = {"features":X}
joblib.dump(train_dict,filename_out)
return
def main():
args = parser.parse_args()
vid_stream = open(args.input_file,'r')
vid_stream.seek(0, os.SEEK_END)
vid_filesize = vid_stream.tell()
if(args.bit_depth==10 or args.bit_depth==12):
multiplier = 3
elif(args.bit_depth==8):
multiplier=1.5
vid_T = int(vid_filesize/(args.height*args.width*multiplier))
hdrchipqa_fromvid(args.input_file,args.results_file,args.width,args.height,vid_T,args.bit_depth,args.color_space)
if __name__ == '__main__':
main()