1
2
3
4
5
6
7
8
9
10
11
12
13
14
| //
| // Created by Scheaven on 2020/5/22.
| //
|
| #ifndef HOMOGRAPHY_UTIL_H
| #define HOMOGRAPHY_UTIL_H
|
| #include <vector>
| #include <opencv2/opencv.hpp> // C++
|
|
| cv::Point2f getTransPoint(const cv::Point2f rightPoint, cv::Mat homography);
|
| #endif //INC_02_COORDINATE_TRANSFORMATION_HOMOGRAPHY_UTIL_H
|
|