hc
2023-02-14 796a7ef0befd21e25c2b9e42f53a6d7a4421941d
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