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

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

// 全局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;//特征点缓存
};