-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathFaceTracker.cpp
264 lines (235 loc) · 6.32 KB
/
FaceTracker.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
#include "FaceTracker.h"
#include "StrCommon.h"
#include "fdsst/fdssttracker.hpp"
#include "fdsst/fhog.h"
#include <boost/thread/mutex.hpp>
#ifdef USETBB
#include <tbb.h>
#endif
#include <Eigen>
#include<StdVector>
#define GLOG_NO_ABBREVIATED_SEVERITIES
#include <glog/logging.h>
//#define UHOG
#if 1
typedef Eigen::Matrix<float, 1, 4, Eigen::RowMajor> DSBOX;
typedef Eigen::Matrix<float, -1, 4, Eigen::RowMajor> DSBOXS;
typedef Eigen::Matrix<float, 1, 128, Eigen::RowMajor> FEATURE;
typedef Eigen::Matrix<float, -1, 128, Eigen::RowMajor> FEATURESS;
typedef std::vector<int> IDS;
typedef Eigen::Matrix<float, 1, 2, Eigen::RowMajor> PT2;
typedef Eigen::Matrix<float, -1, -1, Eigen::RowMajor> DYNAMICM;
typedef Eigen::Matrix<float, 1, 8, Eigen::RowMajor> MEAN;
typedef Eigen::Matrix<float, 8, 8, Eigen::RowMajor> VAR;
typedef Eigen::Matrix<float, 1, 4, Eigen::RowMajor> NMEAN;
typedef Eigen::Matrix<float, 4, 4, Eigen::RowMajor> NVAR;
#else
typedef Eigen::Matrix<float, 1, 4> DSBOX;
typedef Eigen::Matrix<float, -1, 4> DSBOXS;
typedef Eigen::Matrix<float, 1, 128> FEATURE;
typedef Eigen::Matrix<float, -1, 128> FEATURESS;
typedef std::vector<int> IDS;
typedef Eigen::Matrix<float, 1, 2> PT2;
typedef Eigen::Matrix<float, -1, -1> DYNAMICM;
typedef Eigen::Matrix<float, 1, 8> MEAN;
typedef Eigen::Matrix<float, 8, 8> VAR;
typedef Eigen::Matrix<float, 1, 4> NMEAN;
typedef Eigen::Matrix<float, 4, 4> NVAR;
#endif
typedef std::vector<FEATURE, Eigen::aligned_allocator<FEATURE>> FEATUREVEC;
void ExtractFeatureHog(const cv::Mat &in,
const std::vector<cv::Rect> &rcsin,
FEATUREVEC &fts){
cv::Mat frame;
cvtColor(in, frame, cv::COLOR_RGB2GRAY);
for(int i = 0; i < (int)rcsin.size(); i++){
Mat nnn = frame(rcsin[i]);
resize(nnn, nnn, Size(32, 32));
int len = 0;
float *hog = HOGXYZ(nnn, len);
if(hog==NULL || len!=128){
LOG(ERROR) << "hog(" << (hog==NULL) << ") is null or len(" << len << ")!=128,exit!";
exit(0);
}
FEATURE ft;
for(int j = 0; j < len; j++){
ft(j) = hog[j];
}
delete []hog;
fts.push_back(ft);
}
}
FaceTracker::FaceTracker(){
}
FaceTracker::~FaceTracker(){
}
bool FaceTracker::Init(){
Eigen::initParallel();
return true;
}
struct RRSN{
void Push(int pos, const cv::Rect &rc){
#ifndef USETBB
boost::mutex::scoped_lock lock(mutex_);
#endif
rcs_.push_back(std::make_pair(pos, rc));
}
void Get(std::vector<std::pair<int, cv::Rect>> &rcs){
#ifndef USETBB
rcs = rcs_;
#else
for(int i = 0; i < (int)rcs_.size(); i++){
std::pair<int, cv::Rect> tmp = rcs_[i];
rcs.push_back(tmp);
}
#endif
}
private:
#ifndef USETBB
std::vector<cv::Rect> rcs_;
boost::mutex mutex_;
#else
tbb::concurrent_vector<std::pair<int, cv::Rect>> rcs_;
#endif
};
typedef boost::shared_ptr<RRSN> RRS;
struct FFSN{
public:
void Push(int id, const FDSSTTrackerP &ff){
#ifndef USETBB
boost::mutex::scoped_lock lock(mutex_);
#endif
ffs_.push_back(std::make_pair(id, ff));
}
void Get(std::vector<std::pair<int, FDSSTTrackerP> > &ffs){
#ifndef USETBB
ffs = ffs_;
#else
for(int i = 0; i < (int)ffs_.size(); i++){
ffs.push_back(ffs_[i]);
}
#endif
}
private:
#ifndef USETBB
std::vector<std::pair<int, FDSSTTrackerP > > ffs_;
boost::mutex mutex_;
#else
tbb::concurrent_vector<std::pair<int, FDSSTTrackerP> > ffs_;
#endif
};
typedef boost::shared_ptr<FFSN> FFS;
// for framebuffer
void FaceTracker::UpdateFDSST(const Mat &frame, std::vector<cv::Rect> &rcs){
std::map<int, FDSSTTrackerP>::iterator it;
std::vector<int> lostIds;
RRS rrs(new RRSN());
std::vector<std::pair<int, FDSSTTrackerP>> ffs;
for(it = fdssts_.begin(); it != fdssts_.end(); ++it){
std::pair<int, FDSSTTrackerP> pa = *it;//fdsst = it->second;
ffs.push_back(pa);
}
#ifdef USETBB
using namespace tbb;
parallel_for( blocked_range<int>(0, (int)ffs.size()),
[=](const blocked_range<int> &r){
for(int i = r.begin(); i != r.end(); i++){
cv::Rect rc = ffs[i].second->update(frame);
rrs->Push(ffs[i].first, rc);
}
});
#else
omp_set_num_threads(4);
#pragma omp parallel for
for(int i = 0; i < (int)ffs.size(); i++){
cv::Rect rc = ffs[i]->update(frame);
rrs->Push(rc);
}
#endif
//
std::vector<std::pair<int, cv::Rect>> rrcs;
rrs->Get(rrcs);
for(int i = 0; i < (int)rrcs.size(); i++){
std::pair<int, cv::Rect> pa = rrcs[i];
cv::Rect rc = pa.second;//rrcs[i];
int ww = frame.cols;
int hh = frame.rows;
int min = 8;
/*if(rc.x<0 || rc.y<0 ||
(rc.x+rc.width)>ww ||
(rc.y+rc.height)>hh ||
rc.width<=min || rc.height<=min){
lostIds.push_back(pa.first);//it->first);
continue;
}*/
rcs.push_back(ToOriRect(rc));
}
// remove
/*for(int id:lostIds){
LOG(ERROR) << "erase:" << id;
fdssts_.erase(id);
}*/
}
std::map<int, DSResult> FaceTracker::UpdateAndGet(const cv::Mat &frame,
const std::vector<cv::Rect> &rcsin,
int num,
std::vector<cv::Rect> &outRcs,
const std::vector<int> &oriPos,
NewAndDelete *nadOut/*=NULL*/){
std::vector<cv::Rect> rcs;// = rcsin;
//{
Mat ffMat;
cvtColor(frame, ffMat, cv::COLOR_RGB2GRAY);
resize(ffMat, ffMat, Size(ffMat.cols*scale_, ffMat.rows*scale_));
LOG(INFO) << "FaceTracker::UpdateAndGet1\n";
//}
#ifdef UFDSST
if(!rcsin.empty()){
fdssts_.clear();
rcs = rcsin;
std::vector<std::pair<int, cv::Rect>> idrcs;
int i = 0;
for(cv::Rect rc:rcsin){
std::pair<int, cv::Rect> pa;
pa.first = i++;
pa.second = rc;
idrcs.push_back(pa);
}
FFS ffs(new FFSN());
using namespace tbb;
parallel_for( blocked_range<int>(0, idrcs.size()),
[=](const blocked_range<int> &r){
for(int i = r.begin(); i != r.end(); i++){
std::pair<int, cv::Rect> pa = idrcs[i];
int id = pa.first;
cv::Rect rc = pa.second;
LOG(INFO) << "id:" << id << ", rc:(" << rc.x << ", "
<< rc.y << ", " << rc.width << ", "
<< rc.height;
FDSSTTrackerP fdsst(new FDSSTTracker());
fdsst->init(ToScaleRect(rc), ffMat);
ffs->Push(id, fdsst);
}
});
LOG(INFO) << "FaceTracker::UpdateAndGet4\n";
std::vector<std::pair<int, FDSSTTrackerP> > pps;
ffs->Get(pps);
for(int i = 0; i < (int)pps.size(); i++){
std::pair<int, FDSSTTrackerP> pa = pps[i];
fdssts_.insert(pa);
}
}
else{
UpdateFDSST(ffMat, rcs);
}
#endif
LOG(ERROR) << "rcs.size():" << rcs.size();
std::map<int, DSResult> map;
int id = 0;
for(cv::Rect rc:rcs){
DSResult dr;
dr.rc_ = rc;
map.insert(std::make_pair(id++, dr));
}
return map;
}