forked from seanavery/viam-csi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcsi_camera.cpp
451 lines (379 loc) · 15.6 KB
/
csi_camera.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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
#include <iostream>
#include <fstream>
#include <cstring>
#include <sstream>
#include <gst/gst.h>
#include <gst/app/gstappsink.h>
#include <viam/sdk/components/camera/camera.hpp>
#include <viam/api/component/camera/v1/camera.grpc.pb.h>
#include "constraints.h"
#include "utils.cpp"
using namespace viam::sdk;
class CSICamera : public Camera {
private:
// Camera attributes
bool debug;
int width_px = 0;
int height_px = 0;
int frame_rate = 0;
std::string video_path;
// GST attributes
GstElement *pipeline = nullptr;
GstBus *bus = nullptr;
GstMessage *msg = nullptr;
GstSample *sample = nullptr;
GstBuffer *buffer = nullptr;
GstElement* appsink = nullptr;
// Pipeline
std::string input_source;
std::string output_encoder;
public:
explicit CSICamera(std::string name, AttributeMap attrs) : Camera(std::move(name)) {
// Get device type
device_type device = get_device_type();
if (device == device_type::unknown) {
std::cout << "ERROR: device type unknown" << std::endl;
input_source = DEFAULT_INPUT_SOURCE;
output_encoder = DEFAULT_OUTPUT_ENCODER;
} else if (device == device_type::jetson) {
input_source = JETSON_INPUT_SOURCE;
output_encoder = JETSON_OUTPUT_ENCODER;
} else if (device == device_type::pi) {
input_source = PI_INPUT_SOURCE;
output_encoder = PI_OUTPUT_ENCODER;
}
// Validate attributes
validate_attrs(attrs);
// Create GST pipeline
std::string pipeline_args = create_pipeline();
if (debug) {
std::cout << "pipeline_args: " << pipeline_args << std::endl;
}
// Start GST pipeline
init_csi(pipeline_args);
}
void validate_attrs(AttributeMap attrs) {
if (attrs->count("width_px") == 1) {
std::shared_ptr<ProtoType> width_proto = attrs->at("width_px");
auto width_value = width_proto->proto_value();
if (width_value.has_number_value()) {
int width_num = static_cast<int>(width_value.number_value());
width_px = width_num;
}
}
if (!width_px) {
std::cout << "ERROR: width_px attribute not found" << std::endl;
std::cout << "Setting width_px to default value: " << DEFAULT_INPUT_WIDTH << std::endl;
width_px = DEFAULT_INPUT_WIDTH;
}
if (attrs->count("height_px") == 1) {
std::shared_ptr<ProtoType> height_proto = attrs->at("height_px");
auto height_value = height_proto->proto_value();
if (height_value.has_number_value()) {
int height_num = static_cast<int>(height_value.number_value());
height_px = height_num;
}
}
if (!height_px) {
std::cout << "ERROR: height_px attribute not found" << std::endl;
std::cout << "Setting height_px to default value: " << DEFAULT_INPUT_HEIGHT << std::endl;
height_px = DEFAULT_INPUT_HEIGHT;
}
if (attrs->count("frame_rate") == 1) {
std::shared_ptr<ProtoType> frame_proto = attrs->at("frame_rate");
auto frame_value = frame_proto->proto_value();
if (frame_value.has_number_value()) {
int frame_num = static_cast<int>(frame_value.number_value());
frame_rate = frame_num;
}
}
if (!frame_rate) {
std::cout << "ERROR: frame_rate attribute not found" << std::endl;
std::cout << "Setting frame_rate to default value: " << DEFAULT_INPUT_SENSOR<< std::endl;
frame_rate = DEFAULT_INPUT_FRAMERATE;
}
if (attrs->count("video_path") == 1) {
std::shared_ptr<ProtoType> video_proto = attrs->at("video_path");
auto video_value = video_proto->proto_value();
if (video_value.has_string_value()) {
std::string video_str = video_value.string_value();
video_path = video_str;
}
}
if (video_path.empty() ) {
std::cout << "ERROR: video_path attribute not found" << std::endl;
std::cout << "Setting video_path to default value: " << DEFAULT_INPUT_SENSOR << std::endl;
video_path = DEFAULT_INPUT_SENSOR;
}
if (attrs->count("debug") == 1) {
std::shared_ptr<ProtoType> debug_proto = attrs->at("debug");
auto debug_value = debug_proto->proto_value();
if (debug_value.has_bool_value()) {
bool debug_bool = static_cast<bool>(debug_value.bool_value());
debug = debug_bool;
}
}
}
// OVERRIDE
void reconfigure(Dependencies deps, ResourceConfig cfg) override {
if (debug) {
std::cout << "Reconfiguring CSI Camera module" << std::endl;
}
// Update attributes
auto attrs = cfg.attributes();
validate_attrs(attrs);
// Stop gst pipeline
stop_pipeline();
// Create GST pipeline
std::string pipeline_args = create_pipeline();
if (debug) {
std::cout << "pipeline_args: " << pipeline_args << std::endl;
}
// Start GST pipeline
init_csi(pipeline_args);
}
raw_image get_image(std::string mime_type) override {
if (debug) {
std::cout << "hit get_image. expecting mime_type " << mime_type << std::endl;
}
raw_image image;
image.mime_type = DEFAULT_OUTPUT_MIMETYPE;
if (FAKE_CAMERA) {
image.bytes = get_test_image();
return image;
} else {
// TODO: handle no bytes retrieved
image.bytes = get_csi_image();
}
return image;
}
API dynamic_api() const override {
return Camera::static_api();
}
AttributeMap do_command(AttributeMap command) override {
std::cerr << "do_command not implemented" << std::endl;
return 0;
}
point_cloud get_point_cloud(std::string mime_type) override {
std::cerr << "get_point_cloud not implemented" << std::endl;
return point_cloud{};
}
std::vector<GeometryConfig> get_geometries() override {
std::cerr << "get_geometries not implemented" << std::endl;
return std::vector<GeometryConfig>{};
}
properties get_properties() override {
std::cerr << "get_properties not implemented" << std::endl;
return properties{};
};
// GST
void init_csi(std::string pipeline_args) {
// Build gst pipeline
pipeline = gst_parse_launch(
pipeline_args.c_str(),
nullptr
);
if (!pipeline) {
std::cerr << "Failed to create the pipeline" << std::endl;
std::exit(EXIT_FAILURE);
}
// Print pipeline structure
if (debug) {
GST_DEBUG_BIN_TO_DOT_FILE(GST_BIN(pipeline), GST_DEBUG_GRAPH_SHOW_ALL, "pipeline_structure");
}
// Fetch the appsink element
appsink = gst_bin_get_by_name(GST_BIN(pipeline), "appsink0");
if (!appsink) {
std::cerr << "Failed to get the appsink element" << std::endl;
gst_object_unref(pipeline);
std::exit(EXIT_FAILURE);
}
// Start the pipeline
if (gst_element_set_state(pipeline, GST_STATE_PLAYING) == GST_STATE_CHANGE_FAILURE) {
std::cerr << "Failed to start the pipeline" << std::endl;
gst_object_unref(appsink);
gst_object_unref(pipeline);
std::exit(EXIT_FAILURE);
}
// Handle async pipeline creation
wait_pipeline();
// Run the main loop
bus = gst_element_get_bus(pipeline);
if (!bus) {
std::cerr << "Failed to get the bus for the pipeline" << std::endl;
gst_object_unref(appsink);
gst_object_unref(pipeline);
std::exit(EXIT_FAILURE);
}
return;
}
// Handles async GST state change
void wait_pipeline() {
GstState state, pending;
GstStateChangeReturn ret;
while ((ret = gst_element_get_state(pipeline, &state, &pending, GST_CLOCK_TIME_NONE)) == GST_STATE_CHANGE_ASYNC) {
// wait for state change to complete
}
if (ret == GST_STATE_CHANGE_SUCCESS) {
std::cout << "GST pipeline state change success" << std::endl;
} else if (ret == GST_STATE_CHANGE_FAILURE) {
std::cerr << "GST pipeline failed to change state" << std::endl;
std::exit(EXIT_FAILURE);
} else if (ret = GST_STATE_CHANGE_NO_PREROLL) {
std::cout << "GST pipeline changed but not enough data for preroll" << std::endl;
} else {
std::cerr << "GST pipeline failed to change state" << std::endl;
std::exit(EXIT_FAILURE);
}
return;
}
void stop_pipeline() {
if (debug) {
std::cout << "Stopping GST pipeline" << std::endl;
}
// Stop the pipeline
if (gst_element_set_state(pipeline, GST_STATE_NULL) == GST_STATE_CHANGE_FAILURE) {
std::cerr << "Failed to stop the pipeline" << std::endl;
gst_object_unref(appsink);
gst_object_unref(pipeline);
std::exit(EXIT_FAILURE);
}
// Wait for async state change
wait_pipeline();
// Free resources
gst_object_unref(appsink);
gst_object_unref(pipeline);
gst_object_unref(bus);
appsink = nullptr;
pipeline = nullptr;
bus = nullptr;
return;
}
void catch_pipeline() {
GError* error = nullptr;
gchar* debugInfo = nullptr;
switch (GST_MESSAGE_TYPE(msg)) {
case GST_MESSAGE_ERROR:
gst_message_parse_error(msg, &error, &debugInfo);
std::cerr << "Error: " << error->message << std::endl;
std::cerr << "Debug Info: " << debugInfo << std::endl;
stop_pipeline();
std::exit(EXIT_FAILURE);
break;
case GST_MESSAGE_EOS:
std::cout << "End of stream received" << std::endl;
stop_pipeline();
std::exit(EXIT_SUCCESS);
break;
case GST_MESSAGE_WARNING:
gst_message_parse_warning(msg, &error, &debugInfo);
if (debug) {
std::cout << "Warning: " << error->message << std::endl;
std::cout << "Debug Info: " << debugInfo << std::endl;
}
break;
case GST_MESSAGE_INFO:
gst_message_parse_info(msg, &error, &debugInfo);
if (debug) {
std::cout << "Info: " << error->message << std::endl;
std::cout << "Debug Info: " << debugInfo << std::endl;
}
break;
default:
// Ignore other message types
break;
}
// Cleanup
if (error != nullptr)
g_error_free(error);
if (debugInfo != nullptr)
g_free(debugInfo);
}
std::vector<unsigned char> get_csi_image() {
// Pull sample from appsink
std::vector<unsigned char> vec;
sample = gst_app_sink_pull_sample(GST_APP_SINK(appsink));
if (sample != nullptr) {
// Retrieve buffer from the sample
buffer = gst_sample_get_buffer(sample);
// Process or handle the buffer as needed
vec = buff_to_vec(buffer);
// Release the sample
gst_sample_unref(sample);
}
// Check bus for messages
msg = gst_bus_pop(bus);
if (msg != nullptr) {
catch_pipeline();
gst_message_unref(msg);
msg = nullptr;
}
return vec;
}
// UTILS
std::string create_pipeline() {
std::ostringstream oss;
oss << input_source << " sensor_id=" << video_path
<< " ! " << DEFAULT_INPUT_FORMAT
<< ",width=" << std::to_string(width_px)
<< ",height=" << std::to_string(height_px)
<< ",framerate=" << std::to_string(frame_rate)
<< "/1 ! nvvidconv flip-method=" << DEFAULT_INPUT_FLIP_METHOD
<< " ! " << DEFAULT_OUTPUT_FORMAT
<< ",width=" << std::to_string(DEFAULT_OUTPUT_WIDTH)
<< ",height=" << std::to_string(DEFAULT_OUTPUT_HEIGHT)
<< " ! " << output_encoder
<< " ! " << DEFAULT_OUTPUT_MIMETYPE
<< " ! appsink name=appsink0 max-buffers=1";
return oss.str();
}
std::vector<unsigned char> buff_to_vec(GstBuffer *buff) {
// Get the size of the buffer
size_t bufferSize = gst_buffer_get_size(buffer);
// Create a vector with the same size as the buffer
std::vector<unsigned char> vec(bufferSize);
// Copy the buffer data to the vector
GstMapInfo map;
gst_buffer_map(buffer, &map, GST_MAP_READ);
memcpy(vec.data(), map.data, bufferSize);
gst_buffer_unmap(buffer, &map);
return vec;
}
std::vector<unsigned char> get_test_image() {
std::string test_image_path = "./etc/viam-logo.jpeg";
// Create filestream
std::ifstream file(test_image_path, std::ios::binary);
if (!file) {
std::cout << "ERROR: could not open file" << std::endl;
return {};
}
// Read the file contents into a vector
std::vector<unsigned char> bytes(std::istreambuf_iterator<char>(file), {});
return bytes;
}
// GETTERS
std::string get_video_path() const {
return video_path;
}
int get_width_px() const {
return width_px;
}
int get_height_px() const {
return height_px;
}
int get_frame_rate() const {
return frame_rate;
}
bool is_debug() const {
return debug;
}
GstElement* get_appsink() const {
return appsink;
}
GstElement* get_pipeline() const {
return pipeline;
}
GstBus* get_bus() const {
return bus;
}
};