- Add OpenCV and stdexec dependencies - ImageRPC type bridging OpenCV and RPC layers - Stereo rectification boilerplate - get-available-methods RPC method with get_count/get_method_name_by_id/get_method_names - Tests for remote method retrieval - CPU/GPU stereo matcher interfaces with SGBM implementation - Documentation consistency pass across impl and docs TG-5 #ready-for-test TG-2 #in-progress
21 lines
345 B
C++
21 lines
345 B
C++
//
|
|
// Created by vptyp on 11.03.2026.
|
|
//
|
|
#pragma once
|
|
#include <opencv4/opencv2/opencv.hpp>
|
|
namespace score {
|
|
|
|
class Image {
|
|
public:
|
|
Image();
|
|
explicit Image(const cv::Mat &image);
|
|
~Image();
|
|
|
|
/// @note data_ could be changed through this
|
|
[[nodiscard]] cv::Mat get();
|
|
|
|
protected:
|
|
cv::Mat data_;
|
|
};
|
|
|
|
} // namespace score
|