summaryrefslogtreecommitdiffhomepage
path: root/ftnoir_tracker_ht/ftnoir_tracker_ht.h
diff options
context:
space:
mode:
Diffstat (limited to 'ftnoir_tracker_ht/ftnoir_tracker_ht.h')
-rw-r--r--ftnoir_tracker_ht/ftnoir_tracker_ht.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/ftnoir_tracker_ht/ftnoir_tracker_ht.h b/ftnoir_tracker_ht/ftnoir_tracker_ht.h
index ce264b8c..cd4ffa16 100644
--- a/ftnoir_tracker_ht/ftnoir_tracker_ht.h
+++ b/ftnoir_tracker_ht/ftnoir_tracker_ht.h
@@ -20,12 +20,13 @@ using namespace options;
struct settings : opts {
value<double> fov;
- value<int> fps, camera_idx, resolution;
+ value<QString> camera_name;
+ value<int> fps, resolution;
settings() :
opts("HT-Tracker"),
fov(b, "fov", 56),
+ camera_name(b, "camera-name", ""),
fps(b, "fps", 0),
- camera_idx(b, "camera-index", 0),
resolution(b, "resolution", 0)
{}
};