diff options
author | Wei Shuai <cpuwolf@gmail.com> | 2018-01-26 22:02:07 +0800 |
---|---|---|
committer | Wei Shuai <cpuwolf@gmail.com> | 2018-01-26 22:02:07 +0800 |
commit | 4a2a1b636df7a67722b6b5764efa8cfc63c6a5e1 (patch) | |
tree | bd375c924fa72f9eb3ce1d78356785077836f3c1 /tracker-wii/wii_camera.h | |
parent | d057e5db1c9ca81d5f60b9cd8001f60dd155f145 (diff) |
tracker/wii: new home
Diffstat (limited to 'tracker-wii/wii_camera.h')
-rw-r--r-- | tracker-wii/wii_camera.h | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/tracker-wii/wii_camera.h b/tracker-wii/wii_camera.h new file mode 100644 index 00000000..7bd4a7ae --- /dev/null +++ b/tracker-wii/wii_camera.h @@ -0,0 +1,74 @@ +/* + * Copyright (c) 2017-2018 Wei Shuai <cpuwolf@gmail.com> + * + * 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 <functional> +#include <memory> +#include <tuple> + +#include <opencv2/core.hpp> +#include <opencv2/videoio.hpp> + +#include <QString> + +#include <wiiyourself/wiimote.h> +#include "wii_frame.hpp" + +namespace pt_module { + +struct WIICamera final : pt_camera +{ + WIICamera(const QString& module_name); + + pt_camera_open_status start(int idx, 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; + + operator bool() const override { return m_pDev && (!m_pDev->ConnectionLost()); } + + void set_fov(double value) override {} + void show_camera_settings() override; + + +private: + std::unique_ptr<wiimote> m_pDev; + static void on_state_change(wiimote &remote, + state_change_flags changed, + const wiimote_state &new_state); + bool onExit = false; + pt_frame internalframe; + + wii_camera_status _get_frame(cv::Mat& Frame); + bool _get_points(struct wii_info&); + void _get_status(struct wii_info&); + + double dt_mean = 0; + + Timer t; + + pt_camera_info cam_info; + pt_camera_info cam_desired; + QString desired_name, active_name; + + pt_settings s; + + static constexpr inline double dt_eps = 1./384; +}; + +} // ns pt_module |