- 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
16 lines
299 B
C++
16 lines
299 B
C++
#pragma once
|
|
#include "cloud_point/image.h"
|
|
#include <opencv2/calib3d.hpp>
|
|
|
|
namespace score {
|
|
|
|
class Rectify {
|
|
public:
|
|
Rectify();
|
|
~Rectify();
|
|
|
|
void perform(Image &image, cv::Mat cameraMatrix,
|
|
cv::Mat distCoeffs = cv::Mat::zeros(1, 5, CV_64F));
|
|
};
|
|
|
|
} // namespace score
|