#pragma once #include "options/options.hpp" #include #include namespace EasyTracker { using namespace options; #ifdef __clang__ # pragma clang diagnostic push # pragma clang diagnostic ignored "-Wweak-vtables" #endif struct Settings final : options::opts { using slider_value = options::slider_value; value camera_name{ b, "camera-name", "" }; value cam_res_x{ b, "camera-res-width", 640 }, cam_res_y{ b, "camera-res-height", 480 }, cam_fps{ b, "camera-fps", 30 }; value min_point_size{ b, "min-point-size", 2.5 }, max_point_size{ b, "max-point-size", 50 }; value DeadzoneRectHalfEdgeSize { b, "deadzone-rect-half-edge-size", 1 }; value iFourPointsTopX{ b, "iFourPointsTopX", 0 }, iFourPointsTopY{ b, "iFourPointsTopY", 0 }, iFourPointsTopZ{ b, "iFourPointsTopZ", 0 }; value iFourPointsLeftX{ b, "iFourPointsLeftX", 0 }, iFourPointsLeftY{ b, "iFourPointsLeftY", 0 }, iFourPointsLeftZ{ b, "iFourPointsLeftZ", 0 }; value iFourPointsRightX{ b, "iFourPointsRightX", 0 }, iFourPointsRightY{ b, "iFourPointsRightY", 0 }, iFourPointsRightZ{ b, "iFourPointsRightZ", 0 }; value iFourPointsCenterX{ b, "iFourPointsCenterX", 0 }, iFourPointsCenterY{ b, "iFourPointsCenterY", 0 }, iFourPointsCenterZ{ b, "iFourPointsCenterZ", 0 }; value t_MH_x{ b, "model-centroid-x", 0 }, t_MH_y{ b, "model-centroid-y", 0 }, t_MH_z{ b, "model-centroid-z", 0 }; value clip_ty{ b, "clip-ty", 40 }, clip_tz{ b, "clip-tz", 30 }, clip_by{ b, "clip-by", 70 }, clip_bz{ b, "clip-bz", 80 }; value active_model_panel{ b, "active-model-panel", 0 }, cap_x{ b, "cap-x", 35 }, cap_y{ b, "cap-y", 55 }, cap_z{ b, "cap-z", 100 }; value fov{ b, "camera-fov", 56 }; value debug{ b, "debug", false }; value PnpSolver{ b, "pnp-solver", cv::SOLVEPNP_P3P }; explicit Settings(const QString& name) : opts(name) {} }; #ifdef __clang__ # pragma clang diagnostic pop #endif } //