bitrl & cuberl Documentation
Simulation engine for reinforcement learning agents
Loading...
Searching...
No Matches
camera.h
Go to the documentation of this file.
1//
2// Created by alex on 11/23/25.
3//
4
5#ifndef CAMERA_H
6#define CAMERA_H
7
8#include <opencv2/opencv.hpp>
9#include <optional>
10#include <string>
11
12namespace bitrl
13{
14namespace sensors
15{
17{
18 cv::Mat image;
19 static std::optional<CameraMessage> parse(const std::string &base64jpeg);
20};
21} // namespace sensors
22} // namespace bitrl
23
24#endif // CAMERA_H
Definition bitrl_consts.h:14
Definition camera.h:17
cv::Mat image
Definition camera.h:18
static std::optional< CameraMessage > parse(const std::string &base64jpeg)
Definition camera.cpp:13