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.
11 lines
401 B
11 lines
401 B
5 months ago
|
#include "Arith_CoordModule.h"
|
||
|
#include "Arith_SysStruct.h"
|
||
|
#include "opencv2/opencv.hpp"
|
||
|
#include "StitchStruct.h"
|
||
|
|
||
|
// 前视扫描投影变换模型
|
||
|
|
||
|
Pole getPoleFromImgWithH(cv::Mat H, cv::Point2f pt, float dep);
|
||
|
cv::Point2f getImgPosFromPole(cv::Mat H_inv, Pole _pole, float dep);
|
||
|
Pole getPoleFromFPan(cv::Point2f pt, FPanInfo _panPara);
|
||
|
cv::Point2f getFPanFromPole(Pole _pole, FPanInfo _panPara);
|