-
Notifications
You must be signed in to change notification settings - Fork 231
/
Utils.cpp
executable file
·433 lines (387 loc) · 15.3 KB
/
Utils.cpp
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
#include "LBF.h"
#include "LBFRegressor.h"
using namespace std;
using namespace cv;
Mat_<double> GetMeanShape(const vector<Mat_<double> >& shapes,
const vector<BoundingBox>& bounding_box){
Mat_<double> result = Mat::zeros(shapes[0].rows,2,CV_64FC1);
for(int i = 0;i < shapes.size();i++){
result = result + ProjectShape(shapes[i],bounding_box[i]);
}
result = 1.0 / shapes.size() * result;
return result;
}
void GetShapeResidual(const vector<Mat_<double> >& ground_truth_shapes,
const vector<Mat_<double> >& current_shapes,
const vector<BoundingBox>& bounding_boxs,
const Mat_<double>& mean_shape,
vector<Mat_<double> >& shape_residuals){
Mat_<double> rotation;
double scale;
shape_residuals.resize(bounding_boxs.size());
for (int i = 0;i < bounding_boxs.size(); i++){
shape_residuals[i] = ProjectShape(ground_truth_shapes[i], bounding_boxs[i])
- ProjectShape(current_shapes[i], bounding_boxs[i]);
SimilarityTransform(mean_shape, ProjectShape(current_shapes[i],bounding_boxs[i]),rotation,scale);
transpose(rotation,rotation);
shape_residuals[i] = scale * shape_residuals[i] * rotation;
}
}
Mat_<double> ProjectShape(const Mat_<double>& shape, const BoundingBox& bounding_box){
Mat_<double> temp(shape.rows,2);
for(int j = 0;j < shape.rows;j++){
temp(j,0) = (shape(j,0)-bounding_box.centroid_x) / (bounding_box.width / 2.0);
temp(j,1) = (shape(j,1)-bounding_box.centroid_y) / (bounding_box.height / 2.0);
}
return temp;
}
Mat_<double> ReProjectShape(const Mat_<double>& shape, const BoundingBox& bounding_box){
Mat_<double> temp(shape.rows,2);
for(int j = 0;j < shape.rows;j++){
temp(j,0) = (shape(j,0) * bounding_box.width / 2.0 + bounding_box.centroid_x);
temp(j,1) = (shape(j,1) * bounding_box.height / 2.0 + bounding_box.centroid_y);
}
return temp;
}
void SimilarityTransform(const Mat_<double>& shape1, const Mat_<double>& shape2,
Mat_<double>& rotation,double& scale){
rotation = Mat::zeros(2,2,CV_64FC1);
scale = 0;
// center the data
double center_x_1 = 0;
double center_y_1 = 0;
double center_x_2 = 0;
double center_y_2 = 0;
for(int i = 0;i < shape1.rows;i++){
center_x_1 += shape1(i,0);
center_y_1 += shape1(i,1);
center_x_2 += shape2(i,0);
center_y_2 += shape2(i,1);
}
center_x_1 /= shape1.rows;
center_y_1 /= shape1.rows;
center_x_2 /= shape2.rows;
center_y_2 /= shape2.rows;
Mat_<double> temp1 = shape1.clone();
Mat_<double> temp2 = shape2.clone();
for(int i = 0;i < shape1.rows;i++){
temp1(i,0) -= center_x_1;
temp1(i,1) -= center_y_1;
temp2(i,0) -= center_x_2;
temp2(i,1) -= center_y_2;
}
Mat_<double> covariance1, covariance2;
Mat_<double> mean1,mean2;
// calculate covariance matrix
calcCovarMatrix(temp1,covariance1,mean1,CV_COVAR_COLS);
calcCovarMatrix(temp2,covariance2,mean2,CV_COVAR_COLS);
double s1 = sqrt(norm(covariance1));
double s2 = sqrt(norm(covariance2));
scale = s1 / s2;
temp1 = 1.0 / s1 * temp1;
temp2 = 1.0 / s2 * temp2;
double num = 0;
double den = 0;
for(int i = 0;i < shape1.rows;i++){
num = num + temp1(i,1) * temp2(i,0) - temp1(i,0) * temp2(i,1);
den = den + temp1(i,0) * temp2(i,0) + temp1(i,1) * temp2(i,1);
}
double norm = sqrt(num*num + den*den);
double sin_theta = num / norm;
double cos_theta = den / norm;
rotation(0,0) = cos_theta;
rotation(0,1) = -sin_theta;
rotation(1,0) = sin_theta;
rotation(1,1) = cos_theta;
}
double calculate_covariance(const vector<double>& v_1,
const vector<double>& v_2){
Mat_<double> v1(v_1);
Mat_<double> v2(v_2);
double mean_1 = mean(v1)[0];
double mean_2 = mean(v2)[0];
v1 = v1 - mean_1;
v2 = v2 - mean_2;
return mean(v1.mul(v2))[0];
}
Mat_<double> LoadGroundTruthShape(string& filename){
Mat_<double> shape(global_params.landmark_num,2);
ifstream fin;
string temp;
fin.open(filename);
getline(fin, temp);
getline(fin, temp);
getline(fin, temp);
for (int i=0;i<global_params.landmark_num;i++){
fin >> shape(i,0) >> shape(i,1);
}
fin.close();
return shape;
}
BoundingBox CalculateBoundingBox(Mat_<double>& shape){
BoundingBox bbx;
int left_x = 10000;
int right_x = 0;
int top_y = 10000;
int bottom_y = 0;
for (int i=0; i < shape.rows;i++){
if (shape(i,0) < left_x)
left_x = shape(i,0);
if (shape(i,0) > right_x)
right_x = shape(i,0);
if (shape(i,1) < top_y)
top_y = shape(i,1);
if (shape(i,1) > bottom_y)
bottom_y = shape(i,1);
}
bbx.start_x = left_x;
bbx.start_y = top_y;
bbx.height = bottom_y - top_y;
bbx.width = right_x - left_x;
bbx.centroid_x = bbx.start_x + bbx.width/2.0;
bbx.centroid_y = bbx.start_y + bbx.height/2.0;
return bbx;
}
void adjustImage(Mat_<uchar>& img,
Mat_<double>& ground_truth_shape,
BoundingBox& bounding_box){
double left_x = max(1.0, bounding_box.centroid_x - bounding_box.width*2/3);
double top_y = max(1.0, bounding_box.centroid_y - bounding_box.height*2/3);
double right_x = min(img.cols-1.0,bounding_box.centroid_x+bounding_box.width);
double bottom_y= min(img.rows-1.0,bounding_box.centroid_y+bounding_box.height);
img = img.rowRange((int)top_y,(int)bottom_y).colRange((int)left_x,(int)right_x).clone();
bounding_box.start_x = bounding_box.start_x-left_x;
bounding_box.start_y = bounding_box.start_y-top_y;
bounding_box.centroid_x = bounding_box.start_x + bounding_box.width/2.0;
bounding_box.centroid_y = bounding_box.start_y + bounding_box.height/2.0;
for(int i=0;i<ground_truth_shape.rows;i++){
ground_truth_shape(i,0) = ground_truth_shape(i,0)-left_x;
ground_truth_shape(i,1) = ground_truth_shape(i,1)-top_y;
}
}
void LoadData(string filepath,
vector<Mat_<uchar> >& images,
vector<Mat_<double> >& ground_truth_shapes,
vector<BoundingBox> & bounding_boxs
){
ifstream fin;
fin.open(filepath);
string name;
while(getline(fin,name)){
name.erase(0, name.find_first_not_of(" \t"));
name.erase(name.find_last_not_of(" \t") + 1);
cout << "file:" << name <<endl;
// Read Image
Mat_<uchar> image = imread(name,0);
images.push_back(image);
// Read ground truth shapes
name.replace(name.find_last_of("."), 4,".pts");
Mat_<double> ground_truth_shape = LoadGroundTruthShape(name);
ground_truth_shapes.push_back(ground_truth_shape);
// Read Bounding box
BoundingBox bbx = CalculateBoundingBox(ground_truth_shape);
bounding_boxs.push_back(bbx);
}
fin.close();
}
bool IsShapeInRect(Mat_<double>& shape, Rect& rect,double scale){
double sum1 = 0;
double sum2 = 0;
double max_x=0,min_x=10000,max_y=0,min_y=10000;
for (int i= 0;i < shape.rows;i++){
if (shape(i,0)>max_x) max_x = shape(i,0);
if (shape(i,0)<min_x) min_x = shape(i,0);
if (shape(i,1)>max_y) max_y = shape(i,1);
if (shape(i,1)<min_y) min_y = shape(i,1);
sum1 += shape(i,0);
sum2 += shape(i,1);
}
if ((max_x-min_x)>rect.width*1.5){
return false;
}
if ((max_y-min_y)>rect.height*1.5){
return false;
}
if (abs(sum1/shape.rows - (rect.x+rect.width/2.0)*scale) > rect.width*scale/2.0){
return false;
}
if (abs(sum2/shape.rows - (rect.y+rect.height/2.0)*scale) > rect.height*scale/2.0){
return false;
}
return true;
}
void LoadOpencvBbxData(string filepath,
vector<Mat_<uchar> >& images,
vector<Mat_<double> >& ground_truth_shapes,
vector<BoundingBox> & bounding_boxs
){
ifstream fin;
fin.open(filepath);
CascadeClassifier cascade;
double scale = 1.3;
extern string cascadeName;
vector<Rect> faces;
Mat gray;
// --Detection
cascade.load(cascadeName);
string name;
while(getline(fin,name)){
name.erase(0, name.find_first_not_of(" \t"));
name.erase(name.find_last_not_of(" \t") + 1);
cout << "file:" << name <<endl;
// Read Image
Mat_<uchar> image = imread(name,0);
// Read ground truth shapes
name.replace(name.find_last_of("."), 4,".pts");
Mat_<double> ground_truth_shape = LoadGroundTruthShape(name);
// Read OPencv Detection Bbx
Mat smallImg( cvRound (image.rows/scale), cvRound(image.cols/scale), CV_8UC1 );
resize( image, smallImg, smallImg.size(), 0, 0, INTER_LINEAR );
equalizeHist( smallImg, smallImg );
// --Detection
cascade.detectMultiScale( smallImg, faces,
1.1, 2, 0
//|CV_HAAR_FIND_BIGGEST_OBJECT
//|CV_HAAR_DO_ROUGH_SEARCH
|CV_HAAR_SCALE_IMAGE
,
Size(30, 30) );
for( vector<Rect>::const_iterator r = faces.begin(); r != faces.end(); r++){
Rect rect = *r;
if (IsShapeInRect(ground_truth_shape,rect,scale)){
Point center;
BoundingBox boundingbox;
boundingbox.start_x = r->x*scale;
boundingbox.start_y = r->y*scale;
boundingbox.width = (r->width-1)*scale;
boundingbox.height = (r->height-1)*scale;
boundingbox.centroid_x = boundingbox.start_x + boundingbox.width/2.0;
boundingbox.centroid_y = boundingbox.start_y + boundingbox.height/2.0;
adjustImage(image,ground_truth_shape,boundingbox);
images.push_back(image);
ground_truth_shapes.push_back(ground_truth_shape);
bounding_boxs.push_back(boundingbox);
// // add train data
// bounding_boxs.push_back(boundingbox);
// images.push_back(image);
// ground_truth_shapes.push_back(ground_truth_shape);
// rectangle(image, cvPoint(boundingbox.start_x,boundingbox.start_y),
// cvPoint(boundingbox.start_x+boundingbox.width,boundingbox.start_y+boundingbox.height),Scalar(0,255,0), 1, 8, 0);
// for (int i = 0;i<ground_truth_shape.rows;i++){
// circle(image,Point2d(ground_truth_shape(i,0),ground_truth_shape(i,1)),1,Scalar(255,0,0),-1,8,0);
//
// }
// imshow("BBX",image);
// cvWaitKey(0);
break;
}
}
}
fin.close();
}
double CalculateError(const Mat_<double>& ground_truth_shape, const Mat_<double>& predicted_shape){
Mat_<double> temp;
temp = ground_truth_shape.rowRange(36, 41)-ground_truth_shape.rowRange(42, 47);
double x =mean(temp.col(0))[0];
double y = mean(temp.col(1))[1];
double interocular_distance = sqrt(x*x+y*y);
double sum = 0;
for (int i=0;i<ground_truth_shape.rows;i++){
sum += norm(ground_truth_shape.row(i)-predicted_shape.row(i));
}
return sum/(ground_truth_shape.rows*interocular_distance);
}
void LoadCofwTrainData(vector<Mat_<uchar> >& images,
vector<Mat_<double> >& ground_truth_shapes,
vector<BoundingBox>& bounding_boxs){
int img_num = 1345;
cout<<"Read images..."<<endl;
for(int i = 0;i < img_num;i++){
string image_name = "/Users/lequan/workspace/xcode/myopencv/COFW_Dataset/trainingImages/";
image_name = image_name + to_string(i+1) + ".jpg";
Mat_<uchar> temp = imread(image_name,0);
images.push_back(temp);
}
ifstream fin;
fin.open("/Users/lequan/workspace/xcode/myopencv/COFW_Dataset/boundingbox.txt");
for(int i = 0;i < img_num;i++){
BoundingBox temp;
fin>>temp.start_x>>temp.start_y>>temp.width>>temp.height;
temp.centroid_x = temp.start_x + temp.width/2.0;
temp.centroid_y = temp.start_y + temp.height/2.0;
bounding_boxs.push_back(temp);
}
fin.close();
fin.open("/Users/lequan/workspace/xcode/myopencv/COFW_Dataset/keypoints.txt");
for(int i = 0;i < img_num;i++){
Mat_<double> temp(global_params.landmark_num,2);
for(int j = 0;j < global_params.landmark_num;j++){
fin>>temp(j,0);
}
for(int j = 0;j < global_params.landmark_num;j++){
fin>>temp(j,1);
}
ground_truth_shapes.push_back(temp);
}
fin.close();
}
void LoadCofwTestData(vector<Mat_<uchar> >& images,
vector<Mat_<double> >& ground_truth_shapes,
vector<BoundingBox>& bounding_boxs){
int img_num = 507;
cout<<"Read images..."<<endl;
for(int i = 0;i < img_num;i++){
string image_name = "/Users/lequan/workspace/xcode/myopencv/COFW_Dataset/testImages/";
image_name = image_name + to_string(i+1) + ".jpg";
Mat_<uchar> temp = imread(image_name,0);
images.push_back(temp);
}
ifstream fin;
fin.open("/Users/lequan/workspace/xcode/myopencv/COFW_Dataset/boundingbox_test.txt");
for(int i = 0;i < img_num;i++){
BoundingBox temp;
fin>>temp.start_x>>temp.start_y>>temp.width>>temp.height;
temp.centroid_x = temp.start_x + temp.width/2.0;
temp.centroid_y = temp.start_y + temp.height/2.0;
bounding_boxs.push_back(temp);
}
fin.close();
fin.open("/Users/lequan/workspace/xcode/myopencv/COFW_Dataset/keypoints_test.txt");
for(int i = 0;i < img_num;i++){
Mat_<double> temp(global_params.landmark_num,2);
for(int j = 0;j < global_params.landmark_num;j++){
fin>>temp(j,0);
}
for(int j = 0;j < global_params.landmark_num;j++){
fin>>temp(j,1);
}
ground_truth_shapes.push_back(temp);
}
fin.close();
}
void LoadDataAdjust(string filepath,
vector<Mat_<uchar> >& images,
vector<Mat_<double> >& ground_truth_shapes,
vector<BoundingBox> & bounding_boxs
){
ifstream fin;
fin.open(filepath);
string name;
while(getline(fin,name)){
name.erase(0, name.find_first_not_of(" \t"));
name.erase(name.find_last_not_of(" \t") + 1);
cout << "file:" << name <<endl;
// Read Image
Mat_<uchar> image = imread(name,0);
// Read ground truth shapes
name.replace(name.find_last_of("."), 4,".pts");
Mat_<double> ground_truth_shape = LoadGroundTruthShape(name);
// Read Bounding box
BoundingBox bbx = CalculateBoundingBox(ground_truth_shape);
adjustImage(image,ground_truth_shape,bbx);
images.push_back(image);
ground_truth_shapes.push_back(ground_truth_shape);
bounding_boxs.push_back(bbx);
}
fin.close();
}