forked from PhotonVision/photon-libcamera-gl-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
camera_grabber.cpp
217 lines (174 loc) · 6.91 KB
/
camera_grabber.cpp
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
#include "camera_grabber.h"
#include <iostream>
#include <stdexcept>
#include <libcamera/control_ids.h>
#include <libcamera/property_ids.h>
CameraGrabber::CameraGrabber(std::shared_ptr<libcamera::Camera> camera,
int width, int height, int rotation)
: m_buf_allocator(camera), m_camera(std::move(camera)), m_cameraExposureProfiles(std::nullopt) {
if (m_camera->acquire()) {
throw std::runtime_error("failed to acquire camera");
}
// Determine model
auto &cprp = m_camera->properties();
auto model = cprp.get(libcamera::properties::Model);
if (model) {
m_model = stringToModel(model.value());
} else {
m_model = Unknown;
}
std::cout << "Model " << m_model << std::endl;
auto config = m_camera->generateConfiguration(
{libcamera::StreamRole::VideoRecording});
// print active arrays
if (m_camera->properties().contains(libcamera::properties::PIXEL_ARRAY_ACTIVE_AREAS)) {
printf("Active areas:\n");
auto rects = m_camera->properties().get(libcamera::properties::PixelArrayActiveAreas);
if (rects.has_value()) {
for(const auto rect : rects.value()) {
std::cout << rect.toString() << std::endl;
}
}
} else
printf("No active areas\n");
config->at(0).size.width = width;
config->at(0).size.height = height;
printf("Rotation = %i\n", rotation);
if (rotation == 180) {
using namespace libcamera;
config->transform = Transform::HFlip * Transform::VFlip * libcamera::Transform::Identity;
} else {
config->transform = libcamera::Transform::Identity;
}
if (config->validate() == libcamera::CameraConfiguration::Invalid) {
throw std::runtime_error("failed to validate config");
}
if (m_camera->configure(config.get()) < 0) {
throw std::runtime_error("failed to configure stream");
}
std::cout << config->at(0).toString() << std::endl;
auto stream = config->at(0).stream();
if (m_buf_allocator.allocate(stream) < 0) {
throw std::runtime_error("failed to allocate buffers");
}
m_config = std::move(config);
for (const auto &buffer : m_buf_allocator.buffers(stream)) {
auto request = m_camera->createRequest();
auto &controls = request->controls();
// controls.set(libcamera::controls::FrameDurationLimits,
// {static_cast<int64_t>(8333), static_cast<int64_t>(8333)});
// controls.set(libcamera::controls::ExposureTime, 10000);
request->addBuffer(stream, buffer.get());
m_requests.push_back(std::move(request));
}
m_camera->requestCompleted.connect(this, &CameraGrabber::requestComplete);
}
CameraGrabber::~CameraGrabber() {
m_camera->release();
m_camera->requestCompleted.disconnect(this,
&CameraGrabber::requestComplete);
}
void CameraGrabber::requestComplete(libcamera::Request *request) {
if (request->status() == libcamera::Request::RequestCancelled) {
return;
}
static int i = 0;
i++;
if (m_onData) {
m_onData->operator()(request);
}
}
void CameraGrabber::requeueRequest(libcamera::Request *request) {
if (running) {
// This resets all our controls
// https://github.com/kbingham/libcamera/blob/master/src/libcamera/request.cpp#L397
request->reuse(libcamera::Request::ReuseFlag::ReuseBuffers);
setControls(request);
if (m_camera->queueRequest(request) < 0) {
throw std::runtime_error("failed to queue request");
}
}
}
void CameraGrabber::setControls(libcamera::Request *request) {
using namespace libcamera;
auto &controls_ = request->controls();
if (m_model != OV9281) {
controls_.set(controls::AwbEnable, false); // AWB disabled
}
controls_.set(controls::AnalogueGain,
m_settings.analogGain); // Analog gain, min 1 max big number?
if (m_model != OV9281) {
controls_.set(controls::ColourGains,
libcamera::Span<const float, 2>{
{m_settings.awbRedGain,
m_settings.awbBlueGain}}); // AWB gains, red and blue,
// unknown range
}
// Note about brightness: -1 makes everything look deep fried, 0 is probably best for most things
controls_.set(libcamera::controls::Brightness,
m_settings.brightness); // -1 to 1, 0 means unchanged
controls_.set(controls::Contrast,
m_settings.contrast); // Nominal 1
if (m_model != OV9281) {
controls_.set(controls::Saturation,
m_settings.saturation); // Nominal 1, 0 would be greyscale
}
if (m_settings.doAutoExposure) {
controls_.set(controls::AeEnable,
true); // Auto exposure disabled
controls_.set(controls::AeMeteringMode, controls::MeteringCentreWeighted);
if (m_model == OV9281) {
controls_.set(controls::AeExposureMode, controls::ExposureNormal);
} else {
controls_.set(controls::AeExposureMode, controls::ExposureShort);
}
// 1/fps=seconds
// seconds * 1e6 = uS
constexpr const int MIN_FRAME_TIME = 1e6 / 250;
constexpr const int MAX_FRAME_TIME = 1e6 / 15;
controls_.set(
libcamera::controls::FrameDurationLimits,
libcamera::Span<const int64_t, 2>{
{MIN_FRAME_TIME, MAX_FRAME_TIME}});
} else {
controls_.set(controls::AeEnable,
false); // Auto exposure disabled
controls_.set(controls::ExposureTime,
m_settings.exposureTimeUs); // in microseconds
controls_.set(
libcamera::controls::FrameDurationLimits,
libcamera::Span<const int64_t, 2>{
{m_settings.exposureTimeUs,
m_settings.exposureTimeUs}}); // Set default to zero, we have
// specified the exposure time
}
controls_.set(controls::ExposureValue, 0);
if (m_model != OV7251 && m_model != OV9281) {
controls_.set(controls::Sharpness, 1);
}
}
void CameraGrabber::startAndQueue() {
running = true;
if (m_camera->start()) {
throw std::runtime_error("failed to start camera");
}
// TODO: HANDLE THIS BETTER
for (auto &request : m_requests) {
setControls(request.get());
if (m_camera->queueRequest(request.get()) < 0) {
throw std::runtime_error("failed to queue request");
}
}
}
void CameraGrabber::stop() {
running = false;
m_camera->stop();
}
void CameraGrabber::setOnData(
std::function<void(libcamera::Request *)> onData) {
m_onData = std::move(onData);
}
void CameraGrabber::resetOnData() { m_onData.reset(); }
const libcamera::StreamConfiguration &CameraGrabber::streamConfiguration() {
return m_config->at(0);
}