blob: b875bb77359bb09f5a81a601902ca5d456383a6b (
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
|
#pragma once
// c/cpp
#include <cstdint>
#include <linux/videodev2.h>
#include <queue>
#include <thread>
// qt
#include <QQueue>
#include <QReadWriteLock>
#include <QSemaphore>
// orpheus
#include "constants.h"
#include "icamera.h"
#include "image.h"
#include "utils/sem_queue.h"
namespace veye {
namespace imx287m {
class i2c;
} // namespace imx287m
} // namespace veye
class HttpServer;
class VeyeIMX287m : public ICamera
{
constexpr static char videoDevice[] = "/dev/video0";
public:
using buffer_t = std::array<uint8_t, img_size>;
public:
VeyeIMX287m();
~VeyeIMX287m() override;
public:
static std::vector<std::shared_ptr<ICamera>> search();
public:
bool startStream() override;
bool dequeueImageBuffer(size_t &image);
// bool getImage(Image &image);
bool getImage(Image *image) override;
std::shared_ptr<Image> getImage() override;
bool init();
// parameters
public:
bool set_autoExposure(const bool enable) override;
std::optional<bool> get_autoExposure() override;
bool set_autoGain(const bool enable) override;
std::optional<bool> get_autoGain() override;
bool set_exposureTime(const std::chrono::microseconds us) override;
std::optional<const std::chrono::microseconds> get_exposureTime() override;
bool set_gain(const float value) override;
std::optional<float> get_gain() override;
public:
/*!
* \brief processedCounter - count of images processed in current second.
* Used for performance measurement and bottlenecks analysing
*/
uint32_t processedCounter{0};
private:
bool openCam();
bool initCam();
bool initI2C();
// bool initHttpServer();
void getFrameLoop(std::stop_token stopToken);
void rotateFrameLoop(std::stop_token stopToken);
void calcPixelsLoop(std::stop_token stopToken);
private:
/*!
* \brief m_cam_fd - camera file descriptor
*/
int m_cam_fd{-1};
/*!
* \brief m_previousFrameCounter - used to detect dropped frames
*/
std::optional<int64_t> m_previousFrameCounter{};
static constexpr uint8_t BUFFER_COUNT{4};
// std::array<Image, BUFFER_COUNT> m_images;
/*!
* \brief m_imageMutexes - lock while processing image from m_images
*/
std::array<std::mutex, BUFFER_COUNT> m_imageMutexes;
// TODO: split this
// there should be no chance of changing image by ioctl during futher processing
struct buffer
{
void *mem{nullptr};
// std::shared_ptr<Image> image{std::make_shared<Image>()};
};
std::vector<buffer> m_rawBuffers;
struct Semaphore
{
sem_queue<std::shared_ptr<Image>, BUFFER_COUNT> rawSemQueue;
// sem_queue<size_t, BUFFER_COUNT> rawSemQueue;
sem_queue<std::shared_ptr<Image>, BUFFER_COUNT> rotSemQueue;
// sem_queue<size_t, BUFFER_COUNT> rotSemQueue;
} m_sync;
std::mutex m_camMtx;
/*!
* \brief m_buffersQueue - queue of buffers which require extracting pixels
*/
std::queue<std::remove_const<decltype(BUFFER_COUNT)>> m_buffersQueue;
std::jthread m_streamThread;
std::jthread m_getThreads[1];
// std::jthread m_getThreads[4];
// TODO: sync all loops somehow to guarantee frames order
std::jthread m_rotateThreads[2];
std::jthread m_calcPixelsThreads[2];
std::mutex m_lastImageMtx;
std::shared_ptr<Image> m_lastProcessedImage{};
std::shared_ptr<veye::imx287m::i2c> m_i2c;
std::shared_ptr<HttpServer> m_httpServer;
};
|