/* * Copyright (c) 2017-2018 Wei Shuai * * 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. */ #pragma once #include "pt-api.hpp" #include "compat/timer.hpp" #include #include #include #include #include #include #include "wii_frame.hpp" namespace pt_module { struct WIICamera final : pt_camera { WIICamera(const QString& module_name); ~WIICamera() override; bool start(const QString& name, int fps, int res_x, int res_y) override; void stop() override; result get_frame(pt_frame& Frame) override; result get_info() const override; pt_camera_info get_desired() const override { return cam_desired; } QString get_desired_name() const override; QString get_active_name() const override; void set_fov(f x) override { (void) x; } void show_camera_settings() override; private: std::unique_ptr m_pDev; static void on_state_change(wiimote &remote, state_change_flags changed, const wiimote_state &new_state); bool onExit = false; wii_camera_status pair(); wii_camera_status get_frame(cv::Mat& Frame); bool get_points(struct wii_info& wii); void get_status(struct wii_info& wii); double dt_mean = 0; Timer t; pt_camera_info cam_info; pt_camera_info cam_desired; QString desired_name, active_name; pt_settings s; int pitch_ = 0, roll_ = 0; static constexpr inline double dt_eps = 1./384; }; } // ns pt_module