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