diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2016-10-11 07:36:55 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2016-10-11 07:36:55 +0200 |
commit | 3e8b619aa87157bdfe245ce2110809ead8649dfa (patch) | |
tree | 7674eeb86d7261082823f9573c21681c7a732aec /tracker-pt/point_extractor.h | |
parent | 35c1983bf127baa43fcc7bf165f86817125a2923 (diff) |
tracker/pt: fix brain fart in extractor
It's multiplied by 3 just a few lines below. So ~2 is actually a
good lower bound.
Diffstat (limited to 'tracker-pt/point_extractor.h')
-rw-r--r-- | tracker-pt/point_extractor.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/tracker-pt/point_extractor.h b/tracker-pt/point_extractor.h index 9ac2d695..a0afa45d 100644 --- a/tracker-pt/point_extractor.h +++ b/tracker-pt/point_extractor.h @@ -6,11 +6,10 @@ * copyright notice and this permission notice appear in all copies. */ -#ifndef POINTEXTRACTOR_H -#define POINTEXTRACTOR_H +#pragma once -#include <opencv2/core/core.hpp> -#include <opencv2/imgproc/imgproc.hpp> +#include <opencv2/core.hpp> +#include <opencv2/imgproc.hpp> #include "ftnoir_tracker_pt_settings.h" @@ -48,5 +47,3 @@ private: std::vector<blob> blobs; }; - -#endif //POINTEXTRACTOR_H |