blob: f9b62282d36a8f0bfb16d39efb09b9dd7ace898d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
/* 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 pt_settings& s) 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 = 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
|