forked from RjDuan/AdvDrop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
decompression.py
211 lines (183 loc) · 6.5 KB
/
decompression.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
# Standard libraries
import itertools
import numpy as np
# PyTorch
import torch
import torch.nn as nn
# Local
import utils
def dequantize(image, q_table):
"""[summary]
TODO: Add discription
Args:
image ([type]): [description]
q_table ([type]): [description]
Returns:
[type]: [description]
"""
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
image = image.to(device)
q_table = q_table.to(device)
dequantitize_img = image * q_table
return dequantitize_img
def y_dequantize(image, y_table):
""" Dequantize Y channel
Inputs:
image(tensor): batch x height x width
factor(float): compression factor
Outputs:
image(tensor): batch x height x width
"""
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
image = image.to(device)
y_table = y_table.to(device)
# y_table = utils.y_table.to(device)
dequantitize_img = image * (y_table )
return dequantitize_img
def c_dequantize(image, c_table):
""" Dequantize CbCr channel
Inputs:
image(tensor): batch x height x width
factor(float): compression factor
Outputs:
image(tensor): batch x height x width
"""
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
image = image.to(device)
c_table = c_table.to(device)
# c_table = utils.c_table.to(device)
dequantitize_img = image * (c_table )
return dequantitize_img
def idct_8x8_ref(image):
""" Reference Inverse Discrete Cosine Transformation
Input:
dcp(tensor): batch x height x width
Output:
image(tensor): batch x height x width
"""
alpha = np.array([1. / np.sqrt(2)] + [1] * 7)
alpha = np.outer(alpha, alpha)
image = image * alpha
result = np.zeros((8, 8), dtype=np.float32)
for u, v in itertools.product(range(8), range(8)):
value = 0
for x, y in itertools.product(range(8), range(8)):
value += image[x, y] * np.cos((2 * u + 1) * x * np.pi / 16) * np.cos(
(2 * v + 1) * y * np.pi / 16)
result[u, v] = value
return result * 0.25 + 128
def idct_8x8(image):
""" Inverse discrete Cosine Transformation
Input:
dcp(tensor): batch x height x width
Output:
image(tensor): batch x height x width
"""
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
alpha = np.array([1. / np.sqrt(2)] + [1] * 7)
# alpha = np.outer(alpha, alpha)
alpha = nn.Parameter(torch.from_numpy(np.outer(alpha, alpha)).float()).to(device)
image = image.to(device)
image = image * alpha
tensor = np.zeros((8, 8, 8, 8), dtype=np.float32)
for x, y, u, v in itertools.product(range(8), repeat=4):
tensor[x, y, u, v] = np.cos((2 * u + 1) * x * np.pi / 16) * np.cos(
(2 * v + 1) * y * np.pi / 16)
tensor = nn.Parameter(torch.from_numpy(tensor).float()).to(device)
result = 0.25 * torch.tensordot(image, tensor, dims=2) + 128
# result = torch.from_numpy(result)
result.view(image.shape)
return result
def block_merging(patches, height, width):
""" Merge pathces into image
Inputs:
patches(tensor) batch x height*width/64, height x width
height(int)
width(int)
Output:
image(tensor): batch x height x width
"""
k = 8
desired_height = int(np.ceil(height/k) * k)
batch_size = patches.shape[0]
image_reshaped = patches.view(batch_size, desired_height//k, desired_height//k, k, k)
image_transposed = image_reshaped.permute(0, 1, 3, 2, 4)
image = image_transposed.contiguous().view(batch_size, desired_height, desired_height)
image = image[:,:height, :width]
return image
def chroma_upsampling(y, cb, cr):
""" Upsample chroma layers
Input:
y(tensor): y channel image
cb(tensor): cb channel
cr(tensor): cr channel
Ouput:
image(tensor): batch x height x width x 3
"""
# def repeat(x, k=2):
# height, width = x.shape[1:3]
# x = x.unsqueeze(-1)
# x = x.repeat(1, 1, k, k)
# x = x.view(-1, height * k, width * k)
# return x
# cb = repeat(cb)
# cr = repeat(cr)
# print(y.shape, cb.shape, cr.shape)
return torch.cat([y.unsqueeze(3), cb.unsqueeze(3), cr.unsqueeze(3)], dim=3)
def ycbcr_to_rgb(image):
""" Converts YCbCr image to RGB
Input:
image(tensor): batch x height x width x 3
Outpput:
result(tensor): batch x 3 x height x width
"""
matrix = np.array(
[[298.082, 0, 408.583], [298.082, -100.291, -208.120],
[298.082, 516.412, 0]],
dtype=np.float32).T / 256
shift = [-222.921, 135.576, -276.836]
result = torch.tensordot(image, matrix, dims=1) + shift
#result = torch.from_numpy(result)
result.view(image.shape)
return result.permute(0, 3, 1, 2)
def ycbcr_to_rgb_jpeg(image):
""" Converts YCbCr image to RGB JPEG
Input:
image(tensor): batch x height x width x 3
Outpput:
result(tensor): batch x 3 x height x width
"""
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
matrix = np.array(
[[1., 0., 1.402], [1, -0.344136, -0.714136], [1, 1.772, 0]],
dtype=np.float32).T
shift = [0, -128, -128]
image = image.to(device)
shift = nn.Parameter(torch.tensor([0, -128., -128.])).to(device)
matrix = nn.Parameter(torch.from_numpy(matrix)).to(device)
result = torch.tensordot(image + shift, matrix, dims=1)
#result = torch.from_numpy(result)
result.view(image.shape)
return result.permute(0, 3, 1, 2)
def decompress_jpeg(y, cb, cr, height, width, rounding=torch.round, factor=1):
""" Full JPEG decompression algortihm
Input:
compressed(dict(tensor)): batch x h*w/64 x 8 x 8
rounding(function): rounding function to use
factor(float): Compression factor
Ouput:
image(tensor): batch x 3 x height x width
"""
upresults = {}
components = {'y': y, 'cb': cb, 'cr': cr}
for k in components.keys():
comp = c_dequantize(components[k], factor) if k in (
'cb', 'cr') else y_dequantize(components[k], factor)
comp = idct_8x8(comp)
comp = block_merging(comp, int(height), int(width)
) if k in ('cb', 'cr') else block_merging(comp, height, width)
upresults[k] = comp
image = chroma_upsampling(upresults['y'], upresults['cb'], upresults['cr'])
# print(image)
image = ycbcr_to_rgb_jpeg(image)
return image