diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2015-07-20 08:09:59 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2015-07-20 08:09:59 +0200 |
commit | eca75bfc0f1b6b990076232f7d27e4d1d2f55dd3 (patch) | |
tree | 158672fae919925ecf01b7fbd79cbd7ed6f37966 /ftnoir_tracker_aruco/ftnoir_tracker_aruco.h | |
parent | e9b42b3d4eabd1d4fbcdfb990c26f286259be8d2 (diff) |
aruco: make fov int, not double
Diffstat (limited to 'ftnoir_tracker_aruco/ftnoir_tracker_aruco.h')
-rw-r--r-- | ftnoir_tracker_aruco/ftnoir_tracker_aruco.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ftnoir_tracker_aruco/ftnoir_tracker_aruco.h b/ftnoir_tracker_aruco/ftnoir_tracker_aruco.h index 86e8d1b9..9691a75c 100644 --- a/ftnoir_tracker_aruco/ftnoir_tracker_aruco.h +++ b/ftnoir_tracker_aruco/ftnoir_tracker_aruco.h @@ -26,7 +26,8 @@ using namespace options; struct settings : opts { - value<double> fov, headpos_x, headpos_y, headpos_z; + value<int> fov; + value<double> headpos_x, headpos_y, headpos_z; value<QString> camera_name; value<int> force_fps, resolution; settings() : |