#pragma once #include "export.hpp" #include "pt-settings.hpp" #include "cv/numeric.hpp" #include "options/options.hpp" #include #include #include #include #include struct OTR_PT_EXPORT pt_camera_info final { pt_camera_info(); virtual double get_focal_length() const; double fov = 0; double fps = 0; int res_x = 0; int res_y = 0; int idx = -1; }; enum pt_camera_open_status : unsigned { cam_open_error, cam_open_ok_no_change, cam_open_ok_change }; struct OTR_PT_EXPORT pt_frame { pt_frame(); virtual ~pt_frame(); template t* as() & { using u = std::decay_t; static_assert(std::is_convertible_v, "must be derived from pt_image"); return static_cast(this); } template t const* as_const() const& { return const_cast(this)->as(); } }; struct OTR_PT_EXPORT pt_pixel_pos_mixin { static std::tuple to_pixel_pos(double x, double y, int w, int h); static std::tuple to_screen_pos(double px, double py, int w, int h); }; struct OTR_PT_EXPORT pt_preview : pt_frame, pt_pixel_pos_mixin { virtual pt_preview& operator=(const pt_frame&) = 0; virtual QImage get_bitmap() = 0; virtual void draw_head_center(double x, double y) = 0; }; struct OTR_PT_EXPORT pt_camera { using result = std::tuple; pt_camera(); virtual ~pt_camera(); virtual warn_result_unused pt_camera_open_status start(int idx, int fps, int res_x, int res_y) = 0; virtual void stop() = 0; virtual warn_result_unused result get_frame(pt_frame& frame) = 0; virtual warn_result_unused result get_info() const = 0; virtual pt_camera_info get_desired() const = 0; virtual QString get_desired_name() const = 0; virtual QString get_active_name() const = 0; virtual void set_fov(double value) = 0; virtual operator bool() const = 0; virtual void show_camera_settings() = 0; }; struct OTR_PT_EXPORT pt_point_extractor : pt_pixel_pos_mixin { using vec2 = types::vec2; pt_point_extractor(); virtual ~pt_point_extractor(); virtual void extract_points(const pt_frame& image, pt_preview& preview_frame, std::vector& points) = 0; static double threshold_radius_value(int w, int h, int threshold); }; struct OTR_PT_EXPORT pt_runtime_traits { template using pointer = std::shared_ptr; pt_runtime_traits(); virtual ~pt_runtime_traits(); virtual pointer make_camera() const = 0; virtual pointer make_point_extractor() const = 0; virtual pointer make_frame() const = 0; virtual pointer make_preview(int w, int h) const = 0; virtual QString get_module_name() const = 0; };