]> rtime.felk.cvut.cz Git - hercules2020/kcf.git/blob - src/kcf.cpp
Simplify scale initialization
[hercules2020/kcf.git] / src / kcf.cpp
1 #include "kcf.h"
2 #include <numeric>
3 #include <thread>
4 #include <algorithm>
5 #include "threadctx.hpp"
6 #include "debug.h"
7
8 #ifdef FFTW
9 #include "fft_fftw.h"
10 #define FFT Fftw
11 #elif defined(CUFFT)
12 #include "fft_cufft.h"
13 #define FFT cuFFT
14 #else
15 #include "fft_opencv.h"
16 #define FFT FftOpencv
17 #endif
18
19 #ifdef OPENMP
20 #include <omp.h>
21 #endif // OPENMP
22
23 DbgTracer __dbgTracer;
24
25 template <typename T>
26 T clamp(const T& n, const T& lower, const T& upper)
27 {
28     return std::max(lower, std::min(n, upper));
29 }
30
31 template <typename T>
32 void clamp2(T& n, const T& lower, const T& upper)
33 {
34     n = std::max(lower, std::min(n, upper));
35 }
36
37 class Kcf_Tracker_Private {
38     friend KCF_Tracker;
39     std::vector<ThreadCtx> threadctxs;
40 };
41
42 KCF_Tracker::KCF_Tracker(double padding, double kernel_sigma, double lambda, double interp_factor,
43                          double output_sigma_factor, int cell_size)
44     : fft(*new FFT()), p_padding(padding), p_output_sigma_factor(output_sigma_factor), p_kernel_sigma(kernel_sigma),
45       p_lambda(lambda), p_interp_factor(interp_factor), p_cell_size(cell_size), d(*new Kcf_Tracker_Private)
46 {
47 }
48
49 KCF_Tracker::KCF_Tracker() : fft(*new FFT()), d(*new Kcf_Tracker_Private) {}
50
51 KCF_Tracker::~KCF_Tracker()
52 {
53     delete &fft;
54     delete &d;
55 }
56
57 void KCF_Tracker::train(cv::Mat input_rgb, cv::Mat input_gray, double interp_factor)
58 {
59     TRACE("");
60
61     // obtain a sub-window for training
62     // TODO: Move Mats outside from here
63     MatScaleFeats patch_feats(1, p_num_of_feats, p_roi);
64     DEBUG_PRINT(patch_feats);
65     MatScaleFeats temp(1, p_num_of_feats, p_roi);
66     get_features(input_rgb, input_gray, p_pose.cx, p_pose.cy,
67                  p_windows_size.width, p_windows_size.height,
68                  p_current_scale).copyTo(patch_feats.scale(0));
69     DEBUG_PRINT(patch_feats);
70     fft.forward_window(patch_feats, p_xf, temp);
71     DEBUG_PRINTM(p_xf);
72     p_model_xf = p_model_xf * (1. - interp_factor) + p_xf * interp_factor;
73     DEBUG_PRINTM(p_model_xf);
74
75     ComplexMat alphaf_num, alphaf_den;
76
77     if (m_use_linearkernel) {
78         ComplexMat xfconj = p_xf.conj();
79         alphaf_num = xfconj.mul(p_yf);
80         alphaf_den = (p_xf * xfconj);
81     } else {
82         // Kernel Ridge Regression, calculate alphas (in Fourier domain)
83         cv::Size sz(Fft::freq_size(p_roi));
84         ComplexMat kf(sz.height, sz.width, 1);
85         (*gaussian_correlation)(kf, p_model_xf, p_model_xf, p_kernel_sigma, true, *this);
86         DEBUG_PRINTM(kf);
87         p_model_alphaf_num = p_yf * kf;
88         p_model_alphaf_den = kf * (kf + p_lambda);
89     }
90     p_model_alphaf = p_model_alphaf_num / p_model_alphaf_den;
91     DEBUG_PRINTM(p_model_alphaf);
92     //        p_model_alphaf = p_yf / (kf + p_lambda);   //equation for fast training
93 }
94
95 void KCF_Tracker::init(cv::Mat &img, const cv::Rect &bbox, int fit_size_x, int fit_size_y)
96 {
97     __dbgTracer.debug = m_debug;
98     TRACE("");
99
100     // check boundary, enforce min size
101     double x1 = bbox.x, x2 = bbox.x + bbox.width, y1 = bbox.y, y2 = bbox.y + bbox.height;
102     if (x1 < 0) x1 = 0.;
103     if (x2 > img.cols - 1) x2 = img.cols - 1;
104     if (y1 < 0) y1 = 0;
105     if (y2 > img.rows - 1) y2 = img.rows - 1;
106
107     if (x2 - x1 < 2 * p_cell_size) {
108         double diff = (2 * p_cell_size - x2 + x1) / 2.;
109         if (x1 - diff >= 0 && x2 + diff < img.cols) {
110             x1 -= diff;
111             x2 += diff;
112         } else if (x1 - 2 * diff >= 0) {
113             x1 -= 2 * diff;
114         } else {
115             x2 += 2 * diff;
116         }
117     }
118     if (y2 - y1 < 2 * p_cell_size) {
119         double diff = (2 * p_cell_size - y2 + y1) / 2.;
120         if (y1 - diff >= 0 && y2 + diff < img.rows) {
121             y1 -= diff;
122             y2 += diff;
123         } else if (y1 - 2 * diff >= 0) {
124             y1 -= 2 * diff;
125         } else {
126             y2 += 2 * diff;
127         }
128     }
129
130     p_pose.w = x2 - x1;
131     p_pose.h = y2 - y1;
132     p_pose.cx = x1 + p_pose.w / 2.;
133     p_pose.cy = y1 + p_pose.h / 2.;
134
135     cv::Mat input_gray, input_rgb = img.clone();
136     if (img.channels() == 3) {
137         cv::cvtColor(img, input_gray, CV_BGR2GRAY);
138         input_gray.convertTo(input_gray, CV_32FC1);
139     } else
140         img.convertTo(input_gray, CV_32FC1);
141
142     // don't need too large image
143     if (p_pose.w * p_pose.h > 100. * 100. && (fit_size_x == -1 || fit_size_y == -1)) {
144         std::cout << "resizing image by factor of " << 1 / p_downscale_factor << std::endl;
145         p_resize_image = true;
146         p_pose.scale(p_downscale_factor);
147         cv::resize(input_gray, input_gray, cv::Size(0, 0), p_downscale_factor, p_downscale_factor, cv::INTER_AREA);
148         cv::resize(input_rgb, input_rgb, cv::Size(0, 0), p_downscale_factor, p_downscale_factor, cv::INTER_AREA);
149     } else if (!(fit_size_x == -1 && fit_size_y == -1)) {
150         if (fit_size_x % p_cell_size != 0 || fit_size_y % p_cell_size != 0) {
151             std::cerr << "Error: Fit size is not multiple of HOG cell size (" << p_cell_size << ")" << std::endl;
152             std::exit(EXIT_FAILURE);
153         }
154         p_scale_factor_x = (double)fit_size_x / round(p_pose.w * (1. + p_padding));
155         p_scale_factor_y = (double)fit_size_y / round(p_pose.h * (1. + p_padding));
156         std::cout << "resizing image horizontaly by factor of " << p_scale_factor_x << " and verticaly by factor of "
157                   << p_scale_factor_y << std::endl;
158         p_fit_to_pw2 = true;
159         p_pose.scale_x(p_scale_factor_x);
160         p_pose.scale_y(p_scale_factor_y);
161         if (fabs(p_scale_factor_x - 1) > p_floating_error || fabs(p_scale_factor_y - 1) > p_floating_error) {
162             if (p_scale_factor_x < 1 && p_scale_factor_y < 1) {
163                 cv::resize(input_gray, input_gray, cv::Size(0, 0), p_scale_factor_x, p_scale_factor_y, cv::INTER_AREA);
164                 cv::resize(input_rgb, input_rgb, cv::Size(0, 0), p_scale_factor_x, p_scale_factor_y, cv::INTER_AREA);
165             } else {
166                 cv::resize(input_gray, input_gray, cv::Size(0, 0), p_scale_factor_x, p_scale_factor_y, cv::INTER_LINEAR);
167                 cv::resize(input_rgb, input_rgb, cv::Size(0, 0), p_scale_factor_x, p_scale_factor_y, cv::INTER_LINEAR);
168             }
169         }
170     }
171
172     // compute win size + fit to fhog cell size
173     p_windows_size.width = round(p_pose.w * (1. + p_padding) / p_cell_size) * p_cell_size;
174     p_windows_size.height = round(p_pose.h * (1. + p_padding) / p_cell_size) * p_cell_size;
175     p_roi.width = p_windows_size.width / p_cell_size;
176     p_roi.height = p_windows_size.height / p_cell_size;
177
178     p_scales.clear();
179     for (int i = -int(p_num_scales) / 2; i <= int(p_num_scales) / 2; ++i)
180         p_scales.push_back(std::pow(p_scale_step, i));
181
182 #ifdef CUFFT
183     if (p_roi.height * (p_roi.width / 2 + 1) > 1024) {
184         std::cerr << "Window after forward FFT is too big for CUDA kernels. Plese use -f to set "
185                      "the window dimensions so its size is less or equal to "
186                   << 1024 * p_cell_size * p_cell_size * 2 + 1
187                   << " pixels . Currently the size of the window is: " << p_windows_size.width << "x" << p_windows_size.height
188                   << " which is  " << p_windows_size.width * p_windows_size.height << " pixels. " << std::endl;
189         std::exit(EXIT_FAILURE);
190     }
191
192     if (m_use_linearkernel) {
193         std::cerr << "cuFFT supports only Gaussian kernel." << std::endl;
194         std::exit(EXIT_FAILURE);
195     }
196 #else
197     p_xf.create(p_roi.height, p_roi.height / 2 + 1, p_num_of_feats);
198 #endif
199
200 #if defined(CUFFT) || defined(FFTW)
201     uint width = p_roi.width / 2 + 1;
202 #else
203     uint width = p_roi.width;
204 #endif
205     p_model_xf.create(p_roi.height, width, p_num_of_feats);
206     p_yf.create(p_roi.height, width, 1);
207     p_xf.create(p_roi.height, width, p_num_of_feats);
208
209 #ifndef BIG_BATCH
210     for (auto scale: p_scales)
211         d.threadctxs.emplace_back(p_roi, p_num_of_feats, scale);
212 #else
213     d.threadctxs.emplace_back(p_roi, p_num_of_feats, p_num_scales);
214 #endif
215
216     gaussian_correlation.reset(new GaussianCorrelation(1, p_roi));
217
218     p_current_scale = 1.;
219
220     double min_size_ratio = std::max(5. * p_cell_size / p_windows_size.width, 5. * p_cell_size / p_windows_size.height);
221     double max_size_ratio =
222         std::min(floor((img.cols + p_windows_size.width / 3) / p_cell_size) * p_cell_size / p_windows_size.width,
223                  floor((img.rows + p_windows_size.height / 3) / p_cell_size) * p_cell_size / p_windows_size.height);
224     p_min_max_scale[0] = std::pow(p_scale_step, std::ceil(std::log(min_size_ratio) / log(p_scale_step)));
225     p_min_max_scale[1] = std::pow(p_scale_step, std::floor(std::log(max_size_ratio) / log(p_scale_step)));
226
227     std::cout << "init: img size " << img.cols << "x" << img.rows << std::endl;
228     std::cout << "init: win size " << p_windows_size.width << "x" << p_windows_size.height << std::endl;
229     std::cout << "init: FFT size " << p_roi.width << "x" << p_roi.height << std::endl;
230     std::cout << "init: min max scales factors: " << p_min_max_scale[0] << " " << p_min_max_scale[1] << std::endl;
231
232     p_output_sigma = std::sqrt(p_pose.w * p_pose.h) * p_output_sigma_factor / p_cell_size;
233
234     fft.init(p_roi.width, p_roi.height, p_num_of_feats, p_num_scales);
235     fft.set_window(MatDynMem(cosine_window_function(p_roi.width, p_roi.height)));
236
237     // window weights, i.e. labels
238     MatScales gsl(1, p_roi);
239     gaussian_shaped_labels(p_output_sigma, p_roi.width, p_roi.height).copyTo(gsl.plane(0));
240     fft.forward(gsl, p_yf);
241     DEBUG_PRINTM(p_yf);
242
243     // train initial model
244     train(input_rgb, input_gray, 1.0);
245 }
246
247 void KCF_Tracker::setTrackerPose(BBox_c &bbox, cv::Mat &img, int fit_size_x, int fit_size_y)
248 {
249     init(img, bbox.get_rect(), fit_size_x, fit_size_y);
250 }
251
252 void KCF_Tracker::updateTrackerPosition(BBox_c &bbox)
253 {
254     if (p_resize_image) {
255         BBox_c tmp = bbox;
256         tmp.scale(p_downscale_factor);
257         p_pose.cx = tmp.cx;
258         p_pose.cy = tmp.cy;
259     } else if (p_fit_to_pw2) {
260         BBox_c tmp = bbox;
261         tmp.scale_x(p_scale_factor_x);
262         tmp.scale_y(p_scale_factor_y);
263         p_pose.cx = tmp.cx;
264         p_pose.cy = tmp.cy;
265     } else {
266         p_pose.cx = bbox.cx;
267         p_pose.cy = bbox.cy;
268     }
269 }
270
271 BBox_c KCF_Tracker::getBBox()
272 {
273     BBox_c tmp = p_pose;
274     tmp.w *= p_current_scale;
275     tmp.h *= p_current_scale;
276
277     if (p_resize_image) tmp.scale(1 / p_downscale_factor);
278     if (p_fit_to_pw2) {
279         tmp.scale_x(1 / p_scale_factor_x);
280         tmp.scale_y(1 / p_scale_factor_y);
281     }
282
283     return tmp;
284 }
285
286 double KCF_Tracker::getFilterResponse() const
287 {
288     return this->max_response;
289 }
290
291 void KCF_Tracker::resizeImgs(cv::Mat &input_rgb, cv::Mat &input_gray)
292 {
293     if (p_resize_image) {
294         cv::resize(input_gray, input_gray, cv::Size(0, 0), p_downscale_factor, p_downscale_factor, cv::INTER_AREA);
295         cv::resize(input_rgb, input_rgb, cv::Size(0, 0), p_downscale_factor, p_downscale_factor, cv::INTER_AREA);
296     } else if (p_fit_to_pw2 && fabs(p_scale_factor_x - 1) > p_floating_error &&
297                fabs(p_scale_factor_y - 1) > p_floating_error) {
298         if (p_scale_factor_x < 1 && p_scale_factor_y < 1) {
299             cv::resize(input_gray, input_gray, cv::Size(0, 0), p_scale_factor_x, p_scale_factor_y, cv::INTER_AREA);
300             cv::resize(input_rgb, input_rgb, cv::Size(0, 0), p_scale_factor_x, p_scale_factor_y, cv::INTER_AREA);
301         } else {
302             cv::resize(input_gray, input_gray, cv::Size(0, 0), p_scale_factor_x, p_scale_factor_y, cv::INTER_LINEAR);
303             cv::resize(input_rgb, input_rgb, cv::Size(0, 0), p_scale_factor_x, p_scale_factor_y, cv::INTER_LINEAR);
304         }
305     }
306 }
307
308 double KCF_Tracker::findMaxReponse(uint &max_idx, cv::Point2f &new_location) const
309 {
310     double max = -1.;
311 #ifndef BIG_BATCH
312     for (uint j = 0; j < d.threadctxs.size(); ++j) {
313         if (d.threadctxs[j].max.response > max) {
314             max = d.threadctxs[j].max.response;
315             max_idx = j;
316         }
317     }
318 #else
319     // FIXME: Iterate correctly in big batch mode - perhaps have only one element in the list
320     for (uint j = 0; j < p_scales.size(); ++j) {
321         if (d.threadctxs[0].max[j].response > max) {
322             max = d.threadctxs[0].max[j].response;
323             max_idx = j;
324         }
325     }
326 #endif
327     cv::Point2i &max_response_pt = IF_BIG_BATCH(d.threadctxs[0].max[max_idx].loc,        d.threadctxs[max_idx].max.loc);
328     cv::Mat max_response_map     = IF_BIG_BATCH(d.threadctxs[0].response.plane(max_idx), d.threadctxs[max_idx].response.plane(0));
329
330     DEBUG_PRINTM(max_response_map);
331     DEBUG_PRINT(max_response_pt);
332
333     // sub pixel quadratic interpolation from neighbours
334     if (max_response_pt.y > max_response_map.rows / 2) // wrap around to negative half-space of vertical axis
335         max_response_pt.y = max_response_pt.y - max_response_map.rows;
336     if (max_response_pt.x > max_response_map.cols / 2) // same for horizontal axis
337         max_response_pt.x = max_response_pt.x - max_response_map.cols;
338
339
340     if (m_use_subpixel_localization) {
341         new_location = sub_pixel_peak(max_response_pt, max_response_map);
342     } else {
343         new_location = max_response_pt;
344     }
345     DEBUG_PRINT(new_location);
346     return max;
347 }
348
349 void KCF_Tracker::track(cv::Mat &img)
350 {
351     __dbgTracer.debug = m_debug;
352     TRACE("");
353
354     cv::Mat input_gray, input_rgb = img.clone();
355     if (img.channels() == 3) {
356         cv::cvtColor(img, input_gray, CV_BGR2GRAY);
357         input_gray.convertTo(input_gray, CV_32FC1);
358     } else
359         img.convertTo(input_gray, CV_32FC1);
360
361     // don't need too large image
362     resizeImgs(input_rgb, input_gray);
363
364 #ifdef ASYNC
365     for (auto &it : d.threadctxs)
366         it.async_res = std::async(std::launch::async, [this, &input_gray, &input_rgb, &it]() -> void {
367             it.track(*this, input_rgb, input_gray);
368         });
369     for (auto const &it : d.threadctxs)
370         it.async_res.wait();
371
372 #else  // !ASYNC
373     // FIXME: Iterate correctly in big batch mode - perhaps have only one element in the list
374     NORMAL_OMP_PARALLEL_FOR
375     for (uint i = 0; i < d.threadctxs.size(); ++i)
376         d.threadctxs[i].track(*this, input_rgb, input_gray);
377 #endif
378
379     cv::Point2f new_location;
380     uint max_idx;
381     max_response = findMaxReponse(max_idx, new_location);
382
383     p_pose.cx += p_current_scale * p_cell_size * double(new_location.x);
384     p_pose.cy += p_current_scale * p_cell_size * double(new_location.y);
385     if (p_fit_to_pw2) {
386         clamp2(p_pose.cx, 0.0, (img.cols * p_scale_factor_x) - 1);
387         clamp2(p_pose.cy, 0.0, (img.rows * p_scale_factor_y) - 1);
388     } else {
389         clamp2(p_pose.cx, 0.0, img.cols - 1.0);
390         clamp2(p_pose.cy, 0.0, img.rows - 1.0);
391     }
392
393     // sub grid scale interpolation
394     if (m_use_subgrid_scale) {
395         p_current_scale *= sub_grid_scale(max_idx);
396     } else {
397         p_current_scale *= p_scales[max_idx];
398     }
399
400     clamp2(p_current_scale, p_min_max_scale[0], p_min_max_scale[1]);
401
402     // train at newly estimated target position
403     train(input_rgb, input_gray, p_interp_factor);
404 }
405
406 void ThreadCtx::track(const KCF_Tracker &kcf, cv::Mat &input_rgb, cv::Mat &input_gray)
407 {
408     TRACE("");
409
410     BIG_BATCH_OMP_PARALLEL_FOR
411     for (uint i = 0; i < IF_BIG_BATCH(kcf.p_num_scales, 1); ++i)
412     {
413         kcf.get_features(input_rgb, input_gray, kcf.p_pose.cx, kcf.p_pose.cy,
414                          kcf.p_windows_size.width, kcf.p_windows_size.height,
415                          kcf.p_current_scale * IF_BIG_BATCH(kcf.p_scales[i], scale))
416                 .copyTo(patch_feats.scale(i));
417         DEBUG_PRINT(patch_feats.scale(i));
418     }
419
420     kcf.fft.forward_window(patch_feats, zf, temp);
421     DEBUG_PRINTM(zf);
422
423     if (kcf.m_use_linearkernel) {
424         kzf = zf.mul(kcf.p_model_alphaf).sum_over_channels();
425     } else {
426         gaussian_correlation(kzf, zf, kcf.p_model_xf, kcf.p_kernel_sigma, false, kcf);
427         DEBUG_PRINTM(kzf);
428         kzf = kzf.mul(kcf.p_model_alphaf);
429     }
430     kcf.fft.inverse(kzf, response);
431
432     DEBUG_PRINTM(response);
433
434     /* target location is at the maximum response. we must take into
435     account the fact that, if the target doesn't move, the peak
436     will appear at the top-left corner, not at the center (this is
437     discussed in the paper). the responses wrap around cyclically. */
438     double min_val, max_val;
439     cv::Point2i min_loc, max_loc;
440 #ifdef BIG_BATCH
441     for (size_t i = 0; i < kcf.p_scales.size(); ++i) {
442         cv::minMaxLoc(response.plane(i), &min_val, &max_val, &min_loc, &max_loc);
443         DEBUG_PRINT(max_loc);
444         double weight = kcf.p_scales[i] < 1. ? kcf.p_scales[i] : 1. / kcf.p_scales[i];
445         max[i].response = max_val * weight;
446         max[i].loc = max_loc;
447     }
448 #else
449     cv::minMaxLoc(response.plane(0), &min_val, &max_val, &min_loc, &max_loc);
450
451     DEBUG_PRINT(max_loc);
452     DEBUG_PRINT(max_val);
453
454     double weight = scale < 1. ? scale : 1. / scale;
455     max.response = max_val * weight;
456     max.loc = max_loc;
457 #endif
458 }
459
460 // ****************************************************************************
461
462 cv::Mat KCF_Tracker::get_features(cv::Mat &input_rgb, cv::Mat &input_gray, int cx, int cy,
463                                   int size_x, int size_y, double scale) const
464 {
465     int size_x_scaled = floor(size_x * scale);
466     int size_y_scaled = floor(size_y * scale);
467
468     cv::Mat patch_gray = get_subwindow(input_gray, cx, cy, size_x_scaled, size_y_scaled);
469     cv::Mat patch_rgb = get_subwindow(input_rgb, cx, cy, size_x_scaled, size_y_scaled);
470
471     // resize to default size
472     if (scale > 1.) {
473         // if we downsample use  INTER_AREA interpolation
474         cv::resize(patch_gray, patch_gray, cv::Size(size_x, size_y), 0., 0., cv::INTER_AREA);
475     } else {
476         cv::resize(patch_gray, patch_gray, cv::Size(size_x, size_y), 0., 0., cv::INTER_LINEAR);
477     }
478
479     // get hog(Histogram of Oriented Gradients) features
480     std::vector<cv::Mat> hog_feat = FHoG::extract(patch_gray, 2, p_cell_size, 9);
481
482     // get color rgb features (simple r,g,b channels)
483     std::vector<cv::Mat> color_feat;
484     if ((m_use_color || m_use_cnfeat) && input_rgb.channels() == 3) {
485         // resize to default size
486         if (scale > 1.) {
487             // if we downsample use  INTER_AREA interpolation
488             cv::resize(patch_rgb, patch_rgb, cv::Size(size_x / p_cell_size, size_y / p_cell_size), 0., 0., cv::INTER_AREA);
489         } else {
490             cv::resize(patch_rgb, patch_rgb, cv::Size(size_x / p_cell_size, size_y / p_cell_size), 0., 0., cv::INTER_LINEAR);
491         }
492     }
493
494     if (m_use_color && input_rgb.channels() == 3) {
495         // use rgb color space
496         cv::Mat patch_rgb_norm;
497         patch_rgb.convertTo(patch_rgb_norm, CV_32F, 1. / 255., -0.5);
498         cv::Mat ch1(patch_rgb_norm.size(), CV_32FC1);
499         cv::Mat ch2(patch_rgb_norm.size(), CV_32FC1);
500         cv::Mat ch3(patch_rgb_norm.size(), CV_32FC1);
501         std::vector<cv::Mat> rgb = {ch1, ch2, ch3};
502         cv::split(patch_rgb_norm, rgb);
503         color_feat.insert(color_feat.end(), rgb.begin(), rgb.end());
504     }
505
506     if (m_use_cnfeat && input_rgb.channels() == 3) {
507         std::vector<cv::Mat> cn_feat = CNFeat::extract(patch_rgb);
508         color_feat.insert(color_feat.end(), cn_feat.begin(), cn_feat.end());
509     }
510
511     hog_feat.insert(hog_feat.end(), color_feat.begin(), color_feat.end());
512
513     int size[] = {p_num_of_feats, p_roi.height, p_roi.width};
514     cv::Mat result(3, size, CV_32F);
515     for (uint i = 0; i < hog_feat.size(); ++i)
516         hog_feat[i].copyTo(cv::Mat(size[1], size[2], CV_32FC1, result.ptr(i)));
517
518     return result;
519 }
520
521 cv::Mat KCF_Tracker::gaussian_shaped_labels(double sigma, int dim1, int dim2)
522 {
523     cv::Mat labels(dim2, dim1, CV_32FC1);
524     int range_y[2] = {-dim2 / 2, dim2 - dim2 / 2};
525     int range_x[2] = {-dim1 / 2, dim1 - dim1 / 2};
526
527     double sigma_s = sigma * sigma;
528
529     for (int y = range_y[0], j = 0; y < range_y[1]; ++y, ++j) {
530         float *row_ptr = labels.ptr<float>(j);
531         double y_s = y * y;
532         for (int x = range_x[0], i = 0; x < range_x[1]; ++x, ++i) {
533             row_ptr[i] = std::exp(-0.5 * (y_s + x * x) / sigma_s); //-1/2*e^((y^2+x^2)/sigma^2)
534         }
535     }
536
537     // rotate so that 1 is at top-left corner (see KCF paper for explanation)
538     MatDynMem rot_labels = circshift(labels, range_x[0], range_y[0]);
539     // sanity check, 1 at top left corner
540     assert(rot_labels.at<float>(0, 0) >= 1.f - 1e-10f);
541
542     return rot_labels;
543 }
544
545 cv::Mat KCF_Tracker::circshift(const cv::Mat &patch, int x_rot, int y_rot)
546 {
547     cv::Mat rot_patch(patch.size(), CV_32FC1);
548     cv::Mat tmp_x_rot(patch.size(), CV_32FC1);
549
550     // circular rotate x-axis
551     if (x_rot < 0) {
552         // move part that does not rotate over the edge
553         cv::Range orig_range(-x_rot, patch.cols);
554         cv::Range rot_range(0, patch.cols - (-x_rot));
555         patch(cv::Range::all(), orig_range).copyTo(tmp_x_rot(cv::Range::all(), rot_range));
556
557         // rotated part
558         orig_range = cv::Range(0, -x_rot);
559         rot_range = cv::Range(patch.cols - (-x_rot), patch.cols);
560         patch(cv::Range::all(), orig_range).copyTo(tmp_x_rot(cv::Range::all(), rot_range));
561     } else if (x_rot > 0) {
562         // move part that does not rotate over the edge
563         cv::Range orig_range(0, patch.cols - x_rot);
564         cv::Range rot_range(x_rot, patch.cols);
565         patch(cv::Range::all(), orig_range).copyTo(tmp_x_rot(cv::Range::all(), rot_range));
566
567         // rotated part
568         orig_range = cv::Range(patch.cols - x_rot, patch.cols);
569         rot_range = cv::Range(0, x_rot);
570         patch(cv::Range::all(), orig_range).copyTo(tmp_x_rot(cv::Range::all(), rot_range));
571     } else { // zero rotation
572         // move part that does not rotate over the edge
573         cv::Range orig_range(0, patch.cols);
574         cv::Range rot_range(0, patch.cols);
575         patch(cv::Range::all(), orig_range).copyTo(tmp_x_rot(cv::Range::all(), rot_range));
576     }
577
578     // circular rotate y-axis
579     if (y_rot < 0) {
580         // move part that does not rotate over the edge
581         cv::Range orig_range(-y_rot, patch.rows);
582         cv::Range rot_range(0, patch.rows - (-y_rot));
583         tmp_x_rot(orig_range, cv::Range::all()).copyTo(rot_patch(rot_range, cv::Range::all()));
584
585         // rotated part
586         orig_range = cv::Range(0, -y_rot);
587         rot_range = cv::Range(patch.rows - (-y_rot), patch.rows);
588         tmp_x_rot(orig_range, cv::Range::all()).copyTo(rot_patch(rot_range, cv::Range::all()));
589     } else if (y_rot > 0) {
590         // move part that does not rotate over the edge
591         cv::Range orig_range(0, patch.rows - y_rot);
592         cv::Range rot_range(y_rot, patch.rows);
593         tmp_x_rot(orig_range, cv::Range::all()).copyTo(rot_patch(rot_range, cv::Range::all()));
594
595         // rotated part
596         orig_range = cv::Range(patch.rows - y_rot, patch.rows);
597         rot_range = cv::Range(0, y_rot);
598         tmp_x_rot(orig_range, cv::Range::all()).copyTo(rot_patch(rot_range, cv::Range::all()));
599     } else { // zero rotation
600         // move part that does not rotate over the edge
601         cv::Range orig_range(0, patch.rows);
602         cv::Range rot_range(0, patch.rows);
603         tmp_x_rot(orig_range, cv::Range::all()).copyTo(rot_patch(rot_range, cv::Range::all()));
604     }
605
606     return rot_patch;
607 }
608
609 // hann window actually (Power-of-cosine windows)
610 cv::Mat KCF_Tracker::cosine_window_function(int dim1, int dim2)
611 {
612     cv::Mat m1(1, dim1, CV_32FC1), m2(dim2, 1, CV_32FC1);
613     double N_inv = 1. / (static_cast<double>(dim1) - 1.);
614     for (int i = 0; i < dim1; ++i)
615         m1.at<float>(i) = float(0.5 * (1. - std::cos(2. * CV_PI * static_cast<double>(i) * N_inv)));
616     N_inv = 1. / (static_cast<double>(dim2) - 1.);
617     for (int i = 0; i < dim2; ++i)
618         m2.at<float>(i) = float(0.5 * (1. - std::cos(2. * CV_PI * static_cast<double>(i) * N_inv)));
619     cv::Mat ret = m2 * m1;
620     return ret;
621 }
622
623 // Returns sub-window of image input centered at [cx, cy] coordinates),
624 // with size [width, height]. If any pixels are outside of the image,
625 // they will replicate the values at the borders.
626 cv::Mat KCF_Tracker::get_subwindow(const cv::Mat &input, int cx, int cy, int width, int height) const
627 {
628     cv::Mat patch;
629
630     int x1 = cx - width / 2;
631     int y1 = cy - height / 2;
632     int x2 = cx + width / 2;
633     int y2 = cy + height / 2;
634
635     // out of image
636     if (x1 >= input.cols || y1 >= input.rows || x2 < 0 || y2 < 0) {
637         patch.create(height, width, input.type());
638         patch.setTo(double(0.f));
639         return patch;
640     }
641
642     int top = 0, bottom = 0, left = 0, right = 0;
643
644     // fit to image coordinates, set border extensions;
645     if (x1 < 0) {
646         left = -x1;
647         x1 = 0;
648     }
649     if (y1 < 0) {
650         top = -y1;
651         y1 = 0;
652     }
653     if (x2 >= input.cols) {
654         right = x2 - input.cols + width % 2;
655         x2 = input.cols;
656     } else
657         x2 += width % 2;
658
659     if (y2 >= input.rows) {
660         bottom = y2 - input.rows + height % 2;
661         y2 = input.rows;
662     } else
663         y2 += height % 2;
664
665     if (x2 - x1 == 0 || y2 - y1 == 0)
666         patch = cv::Mat::zeros(height, width, CV_32FC1);
667     else {
668         cv::copyMakeBorder(input(cv::Range(y1, y2), cv::Range(x1, x2)), patch, top, bottom, left, right,
669                            cv::BORDER_REPLICATE);
670         //      imshow( "copyMakeBorder", patch);
671         //      cv::waitKey();
672     }
673
674     // sanity check
675     assert(patch.cols == width && patch.rows == height);
676
677     return patch;
678 }
679
680 void KCF_Tracker::GaussianCorrelation::operator()(ComplexMat &result, const ComplexMat &xf, const ComplexMat &yf,
681                                                   double sigma, bool auto_correlation, const KCF_Tracker &kcf)
682 {
683     TRACE("");
684     xf.sqr_norm(xf_sqr_norm);
685     if (auto_correlation) {
686         yf_sqr_norm = xf_sqr_norm;
687     } else {
688         yf.sqr_norm(yf_sqr_norm);
689     }
690     xyf = auto_correlation ? xf.sqr_mag() : xf * yf.conj(); // xf.muln(yf.conj());
691     DEBUG_PRINTM(xyf);
692
693     // ifft2 and sum over 3rd dimension, we dont care about individual channels
694     ComplexMat xyf_sum = xyf.sum_over_channels();
695     DEBUG_PRINTM(xyf_sum);
696     kcf.fft.inverse(xyf_sum, ifft_res);
697     DEBUG_PRINTM(ifft_res);
698 #ifdef CUFFT
699     // FIXME
700     cuda_gaussian_correlation(ifft_res.deviceMem(), k.deviceMem(), xf_sqr_norm.deviceMem(),
701                               auto_correlation ? xf_sqr_norm.deviceMem() : yf_sqr_norm.deviceMem(), sigma,
702                               xf.n_channels, xf.n_scales, kcf.p_roi.height, kcf.p_roi.width);
703 #else
704
705     float numel_xf_inv = 1.f / (xf.cols * xf.rows * (xf.channels() / xf.n_scales));
706     for (uint i = 0; i < xf.n_scales; ++i) {
707         cv::Mat plane = ifft_res.plane(i);
708         DEBUG_PRINT(ifft_res.plane(i));
709         cv::exp(-1. / (sigma * sigma) * cv::max((xf_sqr_norm[i] + yf_sqr_norm[0] - 2 * ifft_res.plane(i))
710                 * numel_xf_inv, 0), plane);
711         DEBUG_PRINTM(plane);
712     }
713 #endif
714     kcf.fft.forward(ifft_res, result);
715 }
716
717 float get_response_circular(cv::Point2i &pt, cv::Mat &response)
718 {
719     int x = pt.x;
720     int y = pt.y;
721     assert(response.dims == 2); // ensure .cols and .rows are valid
722     if (x < 0) x = response.cols + x;
723     if (y < 0) y = response.rows + y;
724     if (x >= response.cols) x = x - response.cols;
725     if (y >= response.rows) y = y - response.rows;
726
727     return response.at<float>(y, x);
728 }
729
730 cv::Point2f KCF_Tracker::sub_pixel_peak(cv::Point &max_loc, cv::Mat &response) const
731 {
732     // find neighbourhood of max_loc (response is circular)
733     // 1 2 3
734     // 4   5
735     // 6 7 8
736     cv::Point2i p1(max_loc.x - 1, max_loc.y - 1), p2(max_loc.x, max_loc.y - 1), p3(max_loc.x + 1, max_loc.y - 1);
737     cv::Point2i p4(max_loc.x - 1, max_loc.y), p5(max_loc.x + 1, max_loc.y);
738     cv::Point2i p6(max_loc.x - 1, max_loc.y + 1), p7(max_loc.x, max_loc.y + 1), p8(max_loc.x + 1, max_loc.y + 1);
739
740     // clang-format off
741     // fit 2d quadratic function f(x, y) = a*x^2 + b*x*y + c*y^2 + d*x + e*y + f
742     cv::Mat A = (cv::Mat_<float>(9, 6) <<
743                  p1.x*p1.x, p1.x*p1.y, p1.y*p1.y, p1.x, p1.y, 1.f,
744                  p2.x*p2.x, p2.x*p2.y, p2.y*p2.y, p2.x, p2.y, 1.f,
745                  p3.x*p3.x, p3.x*p3.y, p3.y*p3.y, p3.x, p3.y, 1.f,
746                  p4.x*p4.x, p4.x*p4.y, p4.y*p4.y, p4.x, p4.y, 1.f,
747                  p5.x*p5.x, p5.x*p5.y, p5.y*p5.y, p5.x, p5.y, 1.f,
748                  p6.x*p6.x, p6.x*p6.y, p6.y*p6.y, p6.x, p6.y, 1.f,
749                  p7.x*p7.x, p7.x*p7.y, p7.y*p7.y, p7.x, p7.y, 1.f,
750                  p8.x*p8.x, p8.x*p8.y, p8.y*p8.y, p8.x, p8.y, 1.f,
751                  max_loc.x*max_loc.x, max_loc.x*max_loc.y, max_loc.y*max_loc.y, max_loc.x, max_loc.y, 1.f);
752     cv::Mat fval = (cv::Mat_<float>(9, 1) <<
753                     get_response_circular(p1, response),
754                     get_response_circular(p2, response),
755                     get_response_circular(p3, response),
756                     get_response_circular(p4, response),
757                     get_response_circular(p5, response),
758                     get_response_circular(p6, response),
759                     get_response_circular(p7, response),
760                     get_response_circular(p8, response),
761                     get_response_circular(max_loc, response));
762     // clang-format on
763     cv::Mat x;
764     cv::solve(A, fval, x, cv::DECOMP_SVD);
765
766     float a = x.at<float>(0), b = x.at<float>(1), c = x.at<float>(2), d = x.at<float>(3), e = x.at<float>(4);
767
768     cv::Point2f sub_peak(max_loc.x, max_loc.y);
769     if (b > 0 || b < 0) {
770         sub_peak.y = ((2.f * a * e) / b - d) / (b - (4 * a * c) / b);
771         sub_peak.x = (-2 * c * sub_peak.y - e) / b;
772     }
773
774     return sub_peak;
775 }
776
777 double KCF_Tracker::sub_grid_scale(uint index)
778 {
779     cv::Mat A, fval;
780     if (index >= p_scales.size()) {
781         // interpolate from all values
782         // fit 1d quadratic function f(x) = a*x^2 + b*x + c
783         A.create(p_scales.size(), 3, CV_32FC1);
784         fval.create(p_scales.size(), 1, CV_32FC1);
785         for (size_t i = 0; i < p_scales.size(); ++i) {
786             A.at<float>(i, 0) = float(p_scales[i] * p_scales[i]);
787             A.at<float>(i, 1) = float(p_scales[i]);
788             A.at<float>(i, 2) = 1;
789             fval.at<float>(i) = d.threadctxs.back().IF_BIG_BATCH(max[i].response, max.response);
790         }
791     } else {
792         // only from neighbours
793         if (index == 0 || index == p_scales.size() - 1)
794            return p_scales[index];
795
796         A = (cv::Mat_<float>(3, 3) <<
797              p_scales[index - 1] * p_scales[index - 1], p_scales[index - 1], 1,
798              p_scales[index + 0] * p_scales[index + 0], p_scales[index + 0], 1,
799              p_scales[index + 1] * p_scales[index + 1], p_scales[index + 1], 1);
800 #ifdef BIG_BATCH
801         fval = (cv::Mat_<float>(3, 1) <<
802                 d.threadctxs.back().max[index - 1].response,
803                 d.threadctxs.back().max[index + 0].response,
804                 d.threadctxs.back().max[index + 1].response);
805 #else
806         fval = (cv::Mat_<float>(3, 1) <<
807                 d.threadctxs[index - 1].max.response,
808                 d.threadctxs[index + 0].max.response,
809                 d.threadctxs[index + 1].max.response);
810 #endif
811     }
812
813     cv::Mat x;
814     cv::solve(A, fval, x, cv::DECOMP_SVD);
815     float a = x.at<float>(0), b = x.at<float>(1);
816     double scale = p_scales[index];
817     if (a > 0 || a < 0)
818         scale = -b / (2 * a);
819     return scale;
820 }