diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2018-01-12 19:40:22 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2018-01-12 19:40:22 +0100 |
commit | 537a88e522314753149e1ea7921489e58043b40c (patch) | |
tree | a62ac59a546c8b0ee8adeee3bd2aa255d7e4570e /tracker-pt/point_tracker.h | |
parent | 11d8e48e4370c9201f8258b418aadc7a4290dba1 (diff) |
tracker/pt: isolate point extractor and image type
Issue: #718
Diffstat (limited to 'tracker-pt/point_tracker.h')
-rw-r--r-- | tracker-pt/point_tracker.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tracker-pt/point_tracker.h b/tracker-pt/point_tracker.h index 816e02de..26677042 100644 --- a/tracker-pt/point_tracker.h +++ b/tracker-pt/point_tracker.h @@ -19,7 +19,7 @@ #include <array> #include <QObject> -namespace pt_impl { +namespace pt_module { // ---------------------------------------------------------------------------- // Describes a 3-point model @@ -82,5 +82,5 @@ private: } // ns pt_impl -using pt_impl::PointTracker; -using pt_impl::PointModel; +using pt_module::PointTracker; +using pt_module::PointModel; |