summaryrefslogtreecommitdiffhomepage
path: root/tracker-pt
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2019-02-12 12:57:11 +0100
committerStanislaw Halik <sthalik@misaki.pl>2019-02-13 10:29:43 +0100
commit6e57d3c45c1d200e26a2955ba766f4f0a2010160 (patch)
tree20ab66710a22ed32d50600db6f29aad46ca1a1cf /tracker-pt
parent95f2c919af1cffbdbefee1265b01dc7ddba07b72 (diff)
tracker/pt: remove stale comment
Diffstat (limited to 'tracker-pt')
-rw-r--r--tracker-pt/module/point_extractor.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/tracker-pt/module/point_extractor.cpp b/tracker-pt/module/point_extractor.cpp
index 5007cc1d..47bc6de4 100644
--- a/tracker-pt/module/point_extractor.cpp
+++ b/tracker-pt/module/point_extractor.cpp
@@ -51,7 +51,6 @@ algorithm for tracking single particles with variable size and shape." (2008).
*/
static vec2 MeanShiftIteration(const cv::Mat1b &frame_gray, const vec2 &current_center, f filter_width)
{
- // Most amazingly this function runs faster with doubles than with floats.
const f s = 1 / filter_width;
f m = 0;