/* Copyright (c) 2012 Patrick Ruoff * Copyright (c) 2014-2015 Stanislaw Halik * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. */ #ifndef FTNOIR_TRACKER_PT_SETTINGS_H #define FTNOIR_TRACKER_PT_SETTINGS_H #include "opentrack-compat/options.hpp" using namespace options; struct settings_pt : opts { value threshold; value min_point_size, max_point_size; value t_MH_x, t_MH_y, t_MH_z; value camera_mode, model_used; value auto_threshold; settings_pt() : opts("tracker-pt"), threshold(b, "threshold-primary", 128), min_point_size(b, "min-point-size", 0), max_point_size(b, "max-point-size", 50), t_MH_x(b, "model-centroid-x", 0), t_MH_y(b, "model-centroid-y", 0), t_MH_z(b, "model-centroid-z", 0), camera_mode(b, "camera-mode", 0), model_used(b, "model-used", 0), auto_threshold(b, "automatic-threshold", false) {} }; #endif //FTNOIR_TRACKER_PT_SETTINGS_H