]> rtime.felk.cvut.cz Git - hercules2020/kcf.git/blob - src/kcf.h
3d108c6e09daee07c90c9973ff58f122206759a9
[hercules2020/kcf.git] / src / kcf.h
1 #ifndef KCF_HEADER_6565467831231
2 #define KCF_HEADER_6565467831231
3
4 #include <opencv2/opencv.hpp>
5 #include <vector>
6 #include <memory>
7 #include "fhog.hpp"
8
9 #include "complexmat.hpp"
10 #ifdef CUFFT
11 #include "cuda_error_check.hpp"
12 #include <cuda_runtime.h>
13 #endif
14
15 #include "cnfeat.hpp"
16 #include "fft.h"
17 #include "pragmas.h"
18
19 class Kcf_Tracker_Private;
20 struct ThreadCtx;
21
22 struct BBox_c
23 {
24     double cx, cy, w, h, a;
25
26     inline cv::Point2d center() const { return cv::Point2d(cx, cy); }
27
28     inline void scale(double factor)
29     {
30         cx *= factor;
31         cy *= factor;
32         w  *= factor;
33         h  *= factor;
34     }
35
36     inline cv::Rect get_rect()
37     {
38         return cv::Rect(int(cx-w/2.), int(cy-h/2.), int(w), int(h));
39     }
40
41 };
42
43 class KCF_Tracker
44 {
45     friend ThreadCtx;
46     friend Kcf_Tracker_Private;
47 public:
48     bool m_debug {false};
49     enum class vd {NONE, PATCH, RESPONSE} m_visual_debug {vd::NONE};
50     const bool m_use_scale {true};
51     const bool m_use_color {true};
52     const bool m_use_subpixel_localization {true};
53     const bool m_use_subgrid_scale {true};
54     const bool m_use_cnfeat {true};
55     const bool m_use_linearkernel {false};
56     const int p_cell_size = 4;            //4 for hog (= bin_size)
57
58     /*
59     padding             ... extra area surrounding the target           (1.5)
60     kernel_sigma        ... gaussian kernel bandwidth                   (0.5)
61     lambda              ... regularization                              (1e-4)
62     interp_factor       ... linear interpolation factor for adaptation  (0.02)
63     output_sigma_factor ... spatial bandwidth (proportional to target)  (0.1)
64     cell_size           ... hog cell size                               (4)
65     */
66     KCF_Tracker(double padding, double kernel_sigma, double lambda, double interp_factor, double output_sigma_factor, int cell_size);
67     KCF_Tracker();
68     ~KCF_Tracker();
69
70     // Init/re-init methods
71     void init(cv::Mat & img, const cv::Rect & bbox, int fit_size_x = -1, int fit_size_y = -1);
72     void setTrackerPose(BBox_c & bbox, cv::Mat & img, int fit_size_x = -1, int fit_size_y = -1);
73     void updateTrackerPosition(BBox_c & bbox);
74
75     // frame-to-frame object tracking
76     void track(cv::Mat & img);
77     BBox_c getBBox();
78     double getFilterResponse() const; // Measure of tracking accuracy
79
80 private:
81     Fft &fft;
82
83     // Initial pose of tracked object in internal image coordinates
84     // (scaled by p_downscale_factor if p_resize_image)
85     BBox_c p_init_pose;
86
87     // Information to calculate current pose of the tracked object
88     cv::Point2d p_current_center;
89     double p_current_scale = 1.;
90     double p_current_angle = 0.;
91
92     double max_response = -1.;
93
94     bool p_resize_image = false;
95
96     const double p_downscale_factor = 0.5;
97     const double p_floating_error = 0.0001;
98
99     const double p_padding = 1.5;
100     const double p_output_sigma_factor = 0.1;
101     double p_output_sigma;
102     const double p_kernel_sigma = 0.5;    //def = 0.5
103     const double p_lambda = 1e-4;         //regularization in learning step
104     const double p_interp_factor = 0.02;  //def = 0.02, linear interpolation factor for adaptation
105     cv::Size p_windows_size;              // size of the patch to find the tracked object in
106     cv::Size fit_size;                    // size to which rescale the patch for better FFT performance
107
108     const uint p_num_scales = m_use_scale ? 5 : 1;
109     const double p_scale_step = 1.03;
110     double p_min_max_scale[2];
111     std::vector<double> p_scales;
112
113     const uint p_num_angles = 3;
114     const int p_angle_step = 10;
115     std::vector<double> p_angles;
116
117     const int p_num_of_feats = 31 + (m_use_color ? 3 : 0) + (m_use_cnfeat ? 10 : 0);
118     cv::Size feature_size;
119
120     std::unique_ptr<Kcf_Tracker_Private> d;
121
122     class Model {
123         cv::Size feature_size;
124         uint height, width, n_feats;
125     public:
126         ComplexMat yf {height, width, 1};
127         ComplexMat model_alphaf {height, width, 1};
128         ComplexMat model_alphaf_num {height, width, 1};
129         ComplexMat model_alphaf_den {height, width, 1};
130         ComplexMat model_xf {height, width, n_feats};
131         ComplexMat xf {height, width, n_feats};
132
133         // Temporary variables for trainig
134         MatScaleFeats patch_feats{1, n_feats, feature_size};
135         MatScaleFeats temp{1, n_feats, feature_size};
136
137
138
139         Model(cv::Size feature_size, uint _n_feats)
140             : feature_size(feature_size)
141             , height(Fft::freq_size(feature_size).height)
142             , width(Fft::freq_size(feature_size).width)
143             , n_feats(_n_feats) {}
144     };
145
146     std::unique_ptr<Model> model;
147
148     class GaussianCorrelation {
149       public:
150         GaussianCorrelation(uint num_scales, uint num_feats, cv::Size size)
151             : xf_sqr_norm(num_scales)
152             , xyf(Fft::freq_size(size), num_feats, num_scales)
153             , ifft_res(num_scales, size)
154             , k(num_scales, size)
155         {}
156         void operator()(ComplexMat &result, const ComplexMat &xf, const ComplexMat &yf, double sigma, bool auto_correlation, const KCF_Tracker &kcf);
157
158       private:
159         DynMem xf_sqr_norm;
160         DynMem yf_sqr_norm{1};
161         ComplexMat xyf;
162         MatScales ifft_res;
163         MatScales k;
164     };
165
166     //helping functions
167     void scale_track(ThreadCtx &vars, cv::Mat &input_rgb, cv::Mat &input_gray);
168     cv::Mat get_subwindow(const cv::Mat &input, int cx, int cy, int size_x, int size_y, double angle) const;
169     cv::Mat gaussian_shaped_labels(double sigma, int dim1, int dim2);
170     std::unique_ptr<GaussianCorrelation> gaussian_correlation;
171     cv::Mat circshift(const cv::Mat &patch, int x_rot, int y_rot) const;
172     cv::Mat cosine_window_function(int dim1, int dim2);
173     cv::Mat get_features(cv::Mat &input_rgb, cv::Mat &input_gray, cv::Mat *dbg_patch, int cx, int cy, int size_x, int size_y, double scale, double angle) const;
174     cv::Point2f sub_pixel_peak(cv::Point &max_loc, cv::Mat &response) const;
175     double sub_grid_scale(uint index);
176     void resizeImgs(cv::Mat &input_rgb, cv::Mat &input_gray);
177     void train(cv::Mat input_rgb, cv::Mat input_gray, double interp_factor);
178     double findMaxReponse(uint &max_idx, cv::Point2d &new_location) const;
179 };
180
181 #endif //KCF_HEADER_6565467831231