diff options
Diffstat (limited to 'FTNoIR_Tracker_PT/ftnoir_tracker_pt_settings.h')
-rw-r--r-- | FTNoIR_Tracker_PT/ftnoir_tracker_pt_settings.h | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/FTNoIR_Tracker_PT/ftnoir_tracker_pt_settings.h b/FTNoIR_Tracker_PT/ftnoir_tracker_pt_settings.h index 16ee20f3..88162c86 100644 --- a/FTNoIR_Tracker_PT/ftnoir_tracker_pt_settings.h +++ b/FTNoIR_Tracker_PT/ftnoir_tracker_pt_settings.h @@ -21,6 +21,7 @@ struct TrackerSettings int cam_res_x;
int cam_res_y;
int cam_fps;
+ int cam_pitch;
// point extraction
int threshold;
@@ -30,13 +31,7 @@ struct TrackerSettings // point tracking
cv::Vec3f M01;
cv::Vec3f M02;
-
- bool bEnableRoll;
- bool bEnablePitch;
- bool bEnableYaw;
- bool bEnableX;
- bool bEnableY;
- bool bEnableZ;
+ bool dyn_pose_res;
// head to model translation
cv::Vec3f t_MH;
@@ -45,6 +40,13 @@ struct TrackerSettings int reset_time; // in ms
bool video_widget;
+ bool bEnableRoll;
+ bool bEnablePitch;
+ bool bEnableYaw;
+ bool bEnableX;
+ bool bEnableY;
+ bool bEnableZ;
+
void load_ini();
void save_ini() const;
};
|