-
Notifications
You must be signed in to change notification settings - Fork 126
/
Copy pathmain.cpp
240 lines (230 loc) · 7.67 KB
/
main.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
#include "time.h"
#include "MTCNN.h"
#include "mrdir.h"
#include "mropencv.h"
#include "util.h"
const std::string rootdir = "../";
const std::string imgdir = rootdir+"/images";
const std::string resultdir = rootdir + "/results";
const std::string model_dir = rootdir + "/model/caffe";
class PoseEstimator{
public:
cv::Vec3f estimateHeadPose(cv::Mat &img, const std::vector<Point2f > &imagePoints);
PoseEstimator() { init(); }
private:
std::vector<cv::Point3f > modelPoints;
void init();
};
void PoseEstimator::init(){
modelPoints.push_back(Point3f(2.37427, 110.322, 21.7776)); // l eye (v 314)
modelPoints.push_back(Point3f(70.0602, 109.898, 20.8234)); // r eye (v 0)
modelPoints.push_back(Point3f(36.8301, 78.3185, 52.0345)); //nose (v 1879)
modelPoints.push_back(Point3f(14.8498, 51.0115, 30.2378)); // l mouth (v 1502)
modelPoints.push_back(Point3f(58.1825, 51.0115, 29.6224)); // r mouth (v 695)
}
cv::Vec3f PoseEstimator::estimateHeadPose(cv::Mat &img,const std::vector<Point2f > &imagePoints){
cv::Mat rvec, tvec;
int max_d = (img.rows + img.cols)/2;
cv::Mat camMatrix = (Mat_<double>(3, 3) << max_d, 0, img.cols / 2.0,0, max_d, img.rows / 2.0,0, 0, 1.0);
solvePnP(modelPoints,imagePoints, camMatrix, cv::Mat(), rvec, tvec, false, CV_EPNP);
cv::Mat rotM;
cv::Rodrigues(rvec, rotM);
std::vector<cv::Point3f> axises;
std::vector<cv::Point2f> pts2d;
float l = 40;
int x = modelPoints[2].x;
int y = modelPoints[2].y;
int z = modelPoints[2].z;
axises.push_back(cv::Point3f(x,y,z));
axises.push_back(cv::Point3f(x+l,y,z));
axises.push_back(cv::Point3f(x,y+l,z));
axises.push_back(cv::Point3f(x,y,z+l));
projectPoints(axises,rvec,tvec,camMatrix,cv::Mat(),pts2d);
draw3DCoordinateAxes(img,pts2d);
#if 0
projectPoints(modelPoints,rvec,tvec,camMatrix,cv::Mat(),pts2d);
for(int i = 0; i < pts2d.size(); i++){
cv::circle(img,pts2d[i],5,cv::Scalar(255,0,0),-1);
}
#endif
cv:Mat T;
cv::Mat euler_angle;
cv::Mat out_rotation, out_translation;
cv::hconcat(rotM, rvec, T);
cv::decomposeProjectionMatrix(T,camMatrix,out_rotation,out_translation,cv::noArray(),cv::noArray(),cv::noArray(),euler_angle);
cv::Vec3f eav;
for(int i = 0; i < 3; i++){
eav[i] = euler_angle.at<double>(0,i);
}
drawEAV(img,eav);
return eav;
}
int testcamera() {
mtcnn::MTCNN detector(model_dir);
PoseEstimator pe;
cv::VideoCapture cap(0);
if (!cap.isOpened()) {
std::cout << "Cannot open camera" << std::endl;
}
cv::Mat img;
std::vector<mtcnn::FaceInfo> faceInfo;
while (true) {
cap >> img;
if (!img.data) {
break;
}
TickMeter tm;
tm.start();
detector.detect(img, faceInfo);
tm.stop();
std::string cost = double2string(tm.getTimeMilli()) + "ms";
for (int i = 0; i < faceInfo.size(); i++){
std::vector<cv::Point2f > imagePoints;
auto fi = faceInfo[0];
for (int i = 0; i < 5; i++){
imagePoints.push_back(cv::Point2f(fi.facePts.y[i], fi.facePts.x[i]));
}
auto eav = pe.estimateHeadPose(img, imagePoints);
}
cv::putText(img, cost, {200, 40}, 3, 1, {0, 0, 255});
mtcnn::MTCNN::drawDection(img, faceInfo);
cv::imshow("img", img);
cv::waitKey(1);
}
return 0;
}
int testdir(){
mtcnn::MTCNN detector(model_dir);
PoseEstimator pe;
std::vector<std::string>files = getAllFilesinDir(imgdir);
cv::Mat img;
for (int i = 0; i < files.size(); i++){
std::string imageName = imgdir + "/" + files[i];
std::cout << files[i];
img = cv::imread(imageName);
if(!img.data)
continue;
clock_t t1 = clock();
std::vector<mtcnn::FaceInfo> faceInfo;
detector.detect(img, faceInfo);
//std::cout << " : " << (clock() - t1)*1.0 / 1000 << std::endl;
//std::vector<cv::Mat> alignehdfaces = Align5points(img, faceInfo);
//for (int j = 0; j < alignehdfaces.size(); j++){
// std::string alignpath="align/"+int2string(j)+"_"+files[i];
// cv::imwrite(alignpath, alignehdfaces[j]);
//}
if (faceInfo.size() == 0) {
std::cout << "No face detected" << std::endl;
continue;
}
std::vector<cv::Point2f > imagePoints;
auto fi = faceInfo[0];
for (int i = 0; i < 5; i++){
imagePoints.push_back(cv::Point2f(fi.facePts.y[i], fi.facePts.x[i]));
}
pe.estimateHeadPose(img, imagePoints);
mtcnn::MTCNN::drawDection(img,faceInfo);
std::string resultpath = resultdir + "/"+files[i];
cv::imwrite(resultpath, img);
cv::imshow("img", img);
cv::waitKey(1);
}
cv::waitKey();
return 0;
}
int eval_fddb(){
const char* fddb_dir = "E:/Face/Datasets/fddb";
std::string format = fddb_dir + std::string("/MTCNN/%Y%m%d-%H%M%S");
time_t t = time(NULL);
char buff[300];
strftime(buff, sizeof(buff), format.c_str(), localtime(&t));
MKDIR(buff);
std::string result_prefix(buff);
std::string prefix = std::string(fddb_dir) + "/images/";
mtcnn::MTCNN detector(model_dir);
int counter = 0;
//#pragma omp parallel for
for (int i = 1; i <= 10; i++)
{
char fddb[300];
char fddb_out[300];
char fddb_answer[300];
std::cout<<"Folds: "<<i<< std::endl;
sprintf(fddb, "%s/FDDB-folds/FDDB-fold-%02d.txt", fddb_dir, i);
sprintf(fddb_out, "%s/MTCNN/fold-%02d-out.txt", fddb_dir, i);
sprintf(fddb_answer, "%s/FDDB-folds/FDDB-fold-%02d-ellipseList.txt", fddb_dir, i);
FILE* fin = fopen(fddb, "r");
FILE* fanswer = fopen(fddb_answer, "r");
#ifdef _WIN32
FILE* fout = fopen(fddb_out, "wb"); // replace \r\n on Windows platform
#else
FILE* fout = fopen(fddb_out, "w");
#endif // WIN32
char path[300];
int counter = 0;
while (fscanf(fin, "%s", path) > 0)
{
std::string full_path = prefix + std::string(path) + std::string(".jpg");
cv::Mat img = imread(full_path);
if (!img.data) {
std::cout << "Cannot read " << full_path << std::endl;;
continue;
}
clock_t t1 = clock();
std::vector<mtcnn::FaceInfo> faceInfo;
detector.detect(img, faceInfo);
std::cout << "Detect " <<i<<": "<<counter<<" Using : " << (clock() - t1)*1.0 / 1000 << std::endl;
const int n = faceInfo.size();
fprintf(fout, "%s\n%d\n", path, n);
for (int j = 0; j < n; j++) {
int x = (int)faceInfo[j].bbox.x1;
if (x < 0)x = 0;
int y = (int)faceInfo[j].bbox.y1;
if (y < 0)y = 0;
int h = (int)faceInfo[j].bbox.x2 - faceInfo[j].bbox.x1 + 1;
if (h>img.rows - x)h = img.rows - x;
int w = (int)faceInfo[j].bbox.y2 - faceInfo[j].bbox.y1 + 1;
if (w>img.cols-y)w = img.cols - y;
float score = faceInfo[j].bbox.score;
cv::rectangle(img, cv::Rect(y, x, w, h), cv::Scalar(0, 0, 255), 1);
fprintf(fout, "%d %d %d %d %lf\n", y, x, w, h, score);
}
for (int t = 0; t < faceInfo.size(); t++){
mtcnn::FacePts facePts = faceInfo[t].facePts;
for (int j = 0; j < 5; j++)
cv::circle(img, cv::Point(facePts.y[j], facePts.x[j]), 1, cv::Scalar(255, 255, 0), 2);
}
cv::imshow("img", img);
cv::waitKey(1);
char buff[300];
if (1) {
counter++;
sprintf(buff, "%s/%02d_%03d.jpg", result_prefix.c_str(), i, counter);
// get answer
int face_n = 0;
fscanf(fanswer, "%s", path);
fscanf(fanswer, "%d", &face_n);
for (int k = 0; k < face_n; k++)
{
double major_axis_radius, minor_axis_radius, angle, center_x, center_y, score;
fscanf(fanswer, "%lf %lf %lf %lf %lf %lf", &major_axis_radius, &minor_axis_radius, \
&angle, ¢er_x, ¢er_y, &score);
// draw answer
angle = angle / 3.1415926*180.;
cv::ellipse(img, cv::Point2d(center_x, center_y), cv::Size(major_axis_radius, minor_axis_radius), \
angle, 0., 360., { 255,0,0 }, 2);
}
cv::imwrite(buff, img);
}
}
fclose(fin);
fclose(fout);
fclose(fanswer);
}
return 0;
}
int main(int argc, char **argv){
// testcamera();
testdir();
// eval_fddb();
}