删除文件 depthProcess.h

pull/2/head
jzq 2024-06-11 13:16:50 +00:00 committed by Gitee
parent f13bbe7a2f
commit e70f84d331
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
1 changed files with 0 additions and 18 deletions

View File

@ -1,18 +0,0 @@
#pragma once
#include "opencv2/core/core.hpp"
class DepthProcess
{
private:
cv::Mat imgRGB;
cv::Mat imgDepth; // or pointCloud detect by lidar
cv::Mat mK; // camera intrinsic or external parameters between camera and lidar
cv::Mat obstacle; // [dis, cls, maby size]
public:
DepthProcess(cv::Mat mk);
void obstacleDetect(cv::Mat imgDepth);
void obstacleRecognize(cv::Mat boxes);
cv::Mat getObstacle();
};