diff options
author | Stéphane Lenclud <github@lenclud.com> | 2019-04-01 20:31:10 +0200 |
---|---|---|
committer | Stéphane Lenclud <github@lenclud.com> | 2019-04-24 18:46:12 +0200 |
commit | c029e52a330842415502cc29a3460e016d4a8a93 (patch) | |
tree | 400a12e1fbfc5b0a28b36915f00513fab12ac75a /tracker-easy/module/camera.h | |
parent | 456a922b5995f1f836c13c5795258bc83e521571 (diff) |
Renaming Points Tracker to Easy Tracker.
Diffstat (limited to 'tracker-easy/module/camera.h')
-rw-r--r-- | tracker-easy/module/camera.h | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/tracker-easy/module/camera.h b/tracker-easy/module/camera.h new file mode 100644 index 00000000..65b0e552 --- /dev/null +++ b/tracker-easy/module/camera.h @@ -0,0 +1,57 @@ +/* Copyright (c) 2012 Patrick Ruoff + * + * 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 "video/camera.hpp" + +#include <memory> + +#include <opencv2/core.hpp> + +#include <QString> + +namespace pt_module { + +struct Camera final : pt_camera +{ + Camera(const QString& module_name); + + 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 value) override { fov = value; } + void show_camera_settings() override; + + +private: + using camera = typename video::impl::camera; + + [[nodiscard]] bool get_frame_(cv::Mat& frame); + + f dt_mean = 0, fov = 30; + Timer t; + pt_camera_info cam_info; + pt_camera_info cam_desired; + + std::unique_ptr<camera> cap; + + pt_settings s; + + static constexpr f dt_eps = f{1}/256; +}; + +} // ns pt_module |