-
Notifications
You must be signed in to change notification settings - Fork 12
/
main.cpp
130 lines (102 loc) · 4.2 KB
/
main.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
#include <libcamera/camera.h>
#include <libcamera/camera_manager.h>
#include <thread>
#include <chrono>
#include <iostream>
#include <cstring>
#include <opencv2/core.hpp>
#include <opencv2/highgui.hpp>
#include <sys/mman.h>
#include "dma_buf_alloc.h"
#include "gl_hsv_thresholder.h"
#include "camera_grabber.h"
#include "libcamera_opengl_utility.h"
#include "concurrent_blocking_queue.h"
int main() {
constexpr int width = 1920, height = 1080;
auto allocer = DmaBufAlloc("/dev/dma_heap/linux,cma");
auto camera_manager = std::make_unique<libcamera::CameraManager>();
camera_manager->start();
auto cameras = camera_manager->cameras();
if (cameras.size() != 1) {
throw std::runtime_error("code expects only one camera present");
}
auto camera = cameras[0];
auto grabber = CameraGrabber(std::move(camera), width, height);
unsigned int stride = grabber.streamConfiguration().stride;
auto camera_queue = ConcurrentBlockingQueue<libcamera::Request *>();
grabber.setOnData([&](libcamera::Request *request) {
camera_queue.push(request);
});
std::vector<int> fds {
allocer.alloc_buf(width * height * 4),
allocer.alloc_buf(width * height * 4),
allocer.alloc_buf(width * height * 4)
};
std::thread threshold([&]() {
auto colorspace = grabber.streamConfiguration().colorSpace.value();
auto thresholder = GlHsvThresholder(width, height, fds);
auto gpu_queue = ConcurrentBlockingQueue<int>();
thresholder.setOnComplete([&](int fd) {
gpu_queue.push(fd);
});
std::thread display([&]() {
std::unordered_map<int, unsigned char *> mmaped;
for (auto fd: fds) {
auto mmap_ptr = mmap(nullptr, width * height * 4, PROT_READ, MAP_SHARED, fd, 0);
if (mmap_ptr == MAP_FAILED) {
throw std::runtime_error("failed to mmap pointer");
}
mmaped.emplace(fd, static_cast<unsigned char *>(mmap_ptr));
}
cv::Mat threshold_mat(height, width, CV_8UC1);
unsigned char *threshold_out_buf = threshold_mat.data;
cv::Mat color_mat(height, width, CV_8UC3);
unsigned char *color_out_buf = color_mat.data;
while (true) {
auto fd = gpu_queue.pop();
if (fd == -1) {
break;
}
auto input_ptr = mmaped.at(fd);
int bound = width * height;
for (int i = 0; i < bound; i++) {
std::memcpy(color_out_buf + i * 3, input_ptr + i * 4, 3);
threshold_out_buf[i] = input_ptr[i * 4 + 3];
}
// pls don't optimize these writes out compiler
std::cout << reinterpret_cast<uint64_t>(threshold_out_buf) << " " << reinterpret_cast<uint64_t>(color_out_buf) << std::endl;
thresholder.returnBuffer(fd);
// cv::imshow("cam", mat);
// cv::waitKey(3);
}
});
while (true) {
auto request = camera_queue.pop();
if (!request) {
break;
}
auto planes = request->buffers().at(grabber.streamConfiguration().stream())->planes();
std::array<GlHsvThresholder::DmaBufPlaneData, 3> yuv_data {{
{planes[0].fd.get(),
static_cast<EGLint>(planes[0].offset),
static_cast<EGLint>(stride)},
{planes[1].fd.get(),
static_cast<EGLint>(planes[1].offset),
static_cast<EGLint>(stride / 2)},
{planes[2].fd.get(),
static_cast<EGLint>(planes[2].offset),
static_cast<EGLint>(stride / 2)},
}};
thresholder.testFrame(yuv_data, encodingFromColorspace(colorspace), rangeFromColorspace(colorspace));
grabber.requeueRequest(request);
}
});
std::this_thread::sleep_for(std::chrono::seconds(2));
grabber.startAndQueue();
for (int i = 0; i < 10; i++) {
std::cout << "Waiting for 1 second" << std::endl;
std::this_thread::sleep_for(std::chrono::seconds(1));
}
return 0;
}