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.

36 lines
597 B

#include "API_VideoStitch.h"
#include "opencv2/opencv.hpp"
5 months ago
#include "Arith_ExtrinsicStitcher.h"
#include "Arith_FeaMatch.h"
class VideoStitch:public API_VideoStitch
{
public:
VideoStitch(SINT32 nWidth, SINT32 nHeight);
~VideoStitch();
void Test();
public:
5 months ago
PanInfo Init(FrameInfo info);
5 months ago
BYTE8 Updata(GD_VIDEO_FRAME_S img, FrameInfo para);
5 months ago
GD_VIDEO_FRAME_S ExportPanAddr();
private:
5 months ago
private:
5 months ago
ExtrinsicStitcher* m_GeoStitcher;//外参计算
FeatureMatcher* m_FeaMatcher;//特征匹配
5 months ago
PanInfo m_panPara;//全景图配置
cv::Mat m_pan;
};