hc
2023-11-22 f743a7adbd6e230d66a6206fa115b59fec2d88eb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef _ORB_ALGOS_OPENCV_H_
#define _ORB_ALGOS_OPENCV_H_
 
#if OPENCV_SUPPORT
#include <vector>
#include "opencv2/opencv.hpp"
 
#define HOMOGRAPHY_MATRIX_SIZE 9
 
int push_orbpoint_cv(U32 num_points, U16* points, vector<Point2f> m_Points);
int get_homography_matrix(
    vector<Point2f> m_queryPoints,
    vector<Point2f> m_trainPoints,
    double* homographyMat,
    U32 size);
#endif
#endif