opencv would be used to compile actual processing part stdexec would be used for RPC module :) TG-8 #in-progress
20 lines
259 B
C++
20 lines
259 B
C++
//
|
|
// Created by vptyp on 11.03.2026.
|
|
//
|
|
#pragma once
|
|
#include <opencv4/opencv2/opencv.hpp>
|
|
namespace score {
|
|
|
|
class Image {
|
|
public:
|
|
Image();
|
|
explicit Image(cv::Mat&& image);
|
|
~Image();
|
|
|
|
cv::Mat get() const;
|
|
|
|
protected:
|
|
cv::Mat data_;
|
|
};
|
|
|
|
} |