diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2016-11-11 18:10:42 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2016-11-12 12:04:27 +0100 |
commit | e5d2902e11ae6ea2e26e0caa6588384225e018f6 (patch) | |
tree | 6b9660910daf250290c339780d5b2ef062646130 /tracker-pt/point_extractor.cpp | |
parent | 049044f181414991a103ace961214c78171c284d (diff) |
tracker/pt: refactor
- separate .{cpp,hpp} for few classes
- don't include namespaces globally; harmless but looks bad
anyway
- class with all public members to struct
Diffstat (limited to 'tracker-pt/point_extractor.cpp')
-rw-r--r-- | tracker-pt/point_extractor.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tracker-pt/point_extractor.cpp b/tracker-pt/point_extractor.cpp index 3b75cb1a..a9f431d9 100644 --- a/tracker-pt/point_extractor.cpp +++ b/tracker-pt/point_extractor.cpp @@ -7,8 +7,6 @@ */ #include "point_extractor.h" -#include <QDebug> - #include "compat/util.hpp" #include <opencv2/videoio.hpp> @@ -17,6 +15,10 @@ #include <algorithm> #include <cinttypes> +#include <QDebug> + +using namespace types; + PointExtractor::PointExtractor() { blobs.reserve(max_blobs); |