-
Notifications
You must be signed in to change notification settings - Fork 57
/
benchmark_validate.py
279 lines (218 loc) · 8.82 KB
/
benchmark_validate.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
#!/usr/bin/env python3
# coding: utf-8
import torch
import torch.nn as nn
import torch.utils.data as data
import torchvision.transforms as transforms
import torch.backends.cudnn as cudnn
import time
import numpy as np
from benchmark_aflw2000 import calc_nme as calc_nme_alfw2000
from benchmark_aflw2000 import ana_msg as ana_alfw2000
from utils.ddfa import ToTensor, Normalize, DDFATestDataset, CenterCrop
import argparse
import logging
import os
from utils.params import ParamsPack
param_pack = ParamsPack()
import glob
import scipy.io as sio
import math
from math import cos, sin, atan2, asin, sqrt
# Only work with numpy without batch
def parse_pose(param):
"""
Parse the parameters into 3x4 affine matrix and pose angles
"""
param = param * param_pack.param_std[:62] + param_pack.param_mean[:62]
Ps = param[:12].reshape(3, -1) # camera matrix
s, R, t3d = P2sRt(Ps)
P = np.concatenate((R, t3d.reshape(3, -1)), axis=1) # without scale
pose = matrix2angle_corr(R) # yaw, pitch, roll
return P, pose
def P2sRt(P):
'''
Decompositing camera matrix P.
'''
t3d = P[:, 3]
R1 = P[0:1, :3]
R2 = P[1:2, :3]
s = (np.linalg.norm(R1) + np.linalg.norm(R2)) / 2.0
r1 = R1 / np.linalg.norm(R1)
r2 = R2 / np.linalg.norm(R2)
r3 = np.cross(r1, r2)
R = np.concatenate((r1, r2, r3), 0)
return s, R, t3d
# def matrix2angle(R):
# '''
# Compute three Euler angles from a Rotation Matrix. Ref: http://www.gregslabaugh.net/publications/euler.pdf
# '''
# if R[2, 0] != 1 and R[2, 0] != -1:
# x = asin(R[2, 0])
# y = atan2(R[2, 1] / cos(x), R[2, 2] / cos(x))
# z = atan2(R[1, 0] / cos(x), R[0, 0] / cos(x))
# else: # Gimbal lock
# z = 0 # can be anything
# if R[2, 0] == -1:
# x = np.pi / 2
# y = z + atan2(R[0, 1], R[0, 2])
# else:
# x = -np.pi / 2
# y = -z + atan2(-R[0, 1], -R[0, 2])
# rx, ry, rz = x*180/np.pi, y*180/np.pi, z*180/np.pi
# return [rx, ry, rz]
#numpy
def matrix2angle_corr(R):
'''
Compute three Euler angles from a Rotation Matrix. Ref: http://www.gregslabaugh.net/publications/euler.pdf
'''
if R[2, 0] != 1 and R[2, 0] != -1:
x = asin(R[2, 0])
y = atan2(R[1, 2] / cos(x), R[2, 2] / cos(x))
z = atan2(R[0, 1] / cos(x), R[0, 0] / cos(x))
else: # Gimbal lock
z = 0 # can be anything
if R[2, 0] == -1:
x = np.pi / 2
y = z + atan2(R[0, 1], R[0, 2])
else:
x = -np.pi / 2
y = -z + atan2(-R[0, 1], -R[0, 2])
rx, ry, rz = x*180/np.pi, y*180/np.pi, z*180/np.pi
return [rx, ry, rz]
def parse_param_62_batch(param):
"""batch styler"""
p_ = param[:, :12].reshape(-1, 3, 4)
p = p_[:, :, :3]
offset = p_[:, :, -1].reshape(-1, 3, 1)
alpha_shp = param[:, 12:52].reshape(-1, 40, 1)
alpha_exp = param[:, 52:62].reshape(-1, 10, 1)
return p, offset, alpha_shp, alpha_exp
# 62-with-false-rot
def reconstruct_vertex(param, data_param, whitening=True, dense=False, transform=True):
"""
Whitening param -> 3d vertex, based on the 3dmm param: u_base, w_shp, w_exp
dense: if True, return dense vertex, else return 68 sparse landmarks. All dense or sparse vertex is transformed to
image coordinate space, but without alignment caused by face cropping.
transform: whether transform to image space
Working with Tensor with batch. Using Fortan-type reshape.
"""
param_mean, param_std, w_shp_base, u_base, w_exp_base = data_param
if whitening:
if param.shape[1] == 62:
param = param * param_std[:62] + param_mean[:62]
p, offset, alpha_shp, alpha_exp = parse_param_62_batch(param)
"""For 68 pts"""
vertex = p @ (u_base + w_shp_base @ alpha_shp + w_exp_base @ alpha_exp).contiguous().view(-1, 68, 3).transpose(1,2) + offset
if transform:
# transform to image coordinate space
vertex[:, 1, :] = param_pack.std_size + 1 - vertex[:, 1, :] ## corrected
return vertex
def extract_param(model, root='', filelists=None,
batch_size=128, num_workers=4):
dataset = DDFATestDataset(filelists=filelists, root=root,
transform=transforms.Compose([ToTensor(), CenterCrop(5, mode='test'), Normalize(mean=127.5, std=130)]))
data_loader = data.DataLoader(dataset, batch_size=batch_size, num_workers=num_workers)
cudnn.benchmark = True
model.eval()
end = time.time()
outputs = []
with torch.no_grad():
for _, inputs in enumerate(data_loader):
inputs = inputs.cuda()
output = model.module.forward_test(inputs)
for i in range(output.shape[0]):
param_prediction = output[i].cpu().numpy().flatten()
outputs.append(param_prediction)
outputs = np.array(outputs, dtype=np.float32)
logging.info('Extracting params take {: .3f}s\n'.format(time.time() - end))
return outputs
def _benchmark_aflw2000(outputs):
"""
Calculate the error statistics.
"""
return ana_alfw2000(calc_nme_alfw2000(outputs, option='ori'))
def benchmark_aflw2000_params(params, data_param):
"""
Reconstruct the landmark points and calculate the statistics
"""
outputs = []
params = torch.Tensor(params).cuda()
batch_size = 50
num_samples = params.shape[0]
iter_num = math.floor(num_samples / batch_size)
residual = num_samples % batch_size
for i in range(iter_num+1):
if i == iter_num:
if residual == 0:
break
batch_data = params[i*batch_size: i*batch_size + residual]
lm = reconstruct_vertex(batch_data, data_param)
lm = lm.cpu().numpy()
for j in range(residual):
outputs.append(lm[j, :2, :])
else:
batch_data = params[i*batch_size: (i+1)*batch_size]
lm = reconstruct_vertex(batch_data, data_param)
lm = lm.cpu().numpy()
for j in range(batch_size):
outputs.append(lm[j, :2, :])
return _benchmark_aflw2000(outputs)
def benchmark_FOE(params):
"""
FOE benchmark validation. Only calculate the groundtruth of angles within [-99, 99]
"""
# Define the data path for AFLW200 groundturh and skip indices, where the data and structure lie on S3 buckets (fixed structure)
groundtruth_excl = './aflw2000_data/eval/ALFW2000-3D_pose_3ANG_excl.npy'
skip_aflw2000 = './aflw2000_data/eval/ALFW2000-3D_pose_3ANG_skip.npy'
if not os.path.isfile(groundtruth_excl) or not os.path.isfile(skip_aflw2000):
raise RuntimeError('The data is not properly downloaded from the S3 bucket. Please check your S3 bucket access permission')
pose_GT = np.load(groundtruth_excl) # groundtruth load
skip_indices = np.load(skip_aflw2000) # load the skip indices in AFLW2000
pose_mat = np.ones((pose_GT.shape[0],3))
total = 0
for i in range(params.shape[0]):
if i in skip_indices:
continue
P, angles = parse_pose(params[i]) # original per-sample decode
angles[0], angles[1], angles[2] = angles[1], angles[0], angles[2]
pose_mat[total,:] = np.array(angles)
total += 1
pose_analy = np.mean(np.abs(pose_mat-pose_GT),axis=0)
MAE = np.mean(pose_analy)
yaw = pose_analy[1]
pitch = pose_analy[0]
roll = pose_analy[2]
msg = 'MAE = %3.3f, [yaw,pitch,roll] = [%3.3f, %3.3f, %3.3f]'%(MAE, yaw, pitch, roll)
print('\n--------------------------------------------------------------------------------')
print(msg)
print('--------------------------------------------------------------------------------')
return msg
# 102
def benchmark_pipeline(model):
"""
Run the benchmark validation pipeline for Facial Alignments: AFLW and AFLW2000, FOE: AFLW2000.
"""
def aflw2000(data_param):
root = './aflw2000_data/AFLW2000-3D_crop'
filelists = './aflw2000_data/AFLW2000-3D_crop.list'
if not os.path.isdir(root) or not os.path.isfile(filelists):
raise RuntimeError('The data is not properly downloaded from the S3 bucket. Please check your S3 bucket access permission')
params = extract_param(
model=model,
root=root,
filelists=filelists,
batch_size=128)
s2 = benchmark_aflw2000_params(params, data_param)
logging.info(s2)
# s3 = benchmark_FOE(params)
# logging.info(s3)
aflw2000(model.module.data_param)
def main():
parser = argparse.ArgumentParser(description='3DDFA Benchmark')
parser.add_argument('--arch', default='mobilenet_1', type=str)
parser.add_argument('-c', '--checkpoint-fp', default='models/phase1_wpdc.pth.tar', type=str)
args = parser.parse_args()
benchmark_pipeline(args.arch, args.checkpoint_fp)
if __name__ == '__main__':
main()