diff options
author | Stéphane Lenclud <github@lenclud.com> | 2019-04-01 20:18:02 +0200 |
---|---|---|
committer | Stéphane Lenclud <github@lenclud.com> | 2019-04-24 18:46:12 +0200 |
commit | 456a922b5995f1f836c13c5795258bc83e521571 (patch) | |
tree | 688b70cea01ad5abaf16a62f9c121f5b17086918 /tracker-points/ftnoir_tracker_pt_dialog.h | |
parent | eb77f73826a26ad1dea84e3ea0173bb952a46e26 (diff) |
Easy Tracker: Preview cross hair now showing top point.
Deleting home made P3P solver we branched from pt now that our OpenCV solution is working.
Diffstat (limited to 'tracker-points/ftnoir_tracker_pt_dialog.h')
-rw-r--r-- | tracker-points/ftnoir_tracker_pt_dialog.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tracker-points/ftnoir_tracker_pt_dialog.h b/tracker-points/ftnoir_tracker_pt_dialog.h index 66981ee6..4f6d956f 100644 --- a/tracker-points/ftnoir_tracker_pt_dialog.h +++ b/tracker-points/ftnoir_tracker_pt_dialog.h @@ -19,11 +19,11 @@ namespace pt_impl { -class TrackerDialog_PT : public ITrackerDialog +class EasyTrackerDialog : public ITrackerDialog { Q_OBJECT public: - TrackerDialog_PT(const QString& module_name); + EasyTrackerDialog(const QString& module_name); void register_tracker(ITracker *tracker) override; void unregister_tracker() override; void save(); @@ -42,7 +42,7 @@ protected: QString threshold_display_text(int threshold_value); pt_settings s; - Tracker_PT* tracker; + EasyTracker* tracker; QTimer timer, calib_timer; TranslationCalibrator trans_calib; QMutex calibrator_mutex; @@ -52,4 +52,4 @@ protected: } // ns pt_impl -using TrackerDialog_PT = pt_impl::TrackerDialog_PT; +using TrackerDialog_PT = pt_impl::EasyTrackerDialog; |