You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
801 B

5 months ago
// 全局BA
/*********版权所有C2025武汉高德红外股份有限公司***************************************
* Arith_BAProc.h
* BA
*
*
* V0.5
* 04046wcw
* 2025/01/15
*
*****************************************************************************************/
#pragma once
#include "StitchStruct.h"
using cv::Mat_;
class BA_Task
{
public:
BA_Task();
~BA_Task();
SINT32 addFrame(GD_VIDEO_FRAME_S img, FrameInfo para);
void Test();
private:
Mat_<int> _similarityMat;//配准点邻接表
//超大空间考虑文件cache todo
private:
vector<cv::Mat> _imgVec;//图像缓存
vector<cv::Point2d> _FeaPtVec;//特征点缓存
};