summaryrefslogtreecommitdiffhomepage
path: root/tracker-points/ftnoir_tracker_pt_dialog.h
diff options
context:
space:
mode:
authorStéphane Lenclud <github@lenclud.com>2019-04-01 20:18:02 +0200
committerStéphane Lenclud <github@lenclud.com>2019-04-12 21:04:37 +0200
commita0551b8b54606face008d865f23bc112086925fe (patch)
tree9f38056b2bd5117d629aa04d9a4a9eae5772634b /tracker-points/ftnoir_tracker_pt_dialog.h
parent2f05c6c9e9caff33f8945aaf8a52019b5557a810 (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.h8
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;