hc
2024-02-19 1c055e55a242a33e574e48be530e06770a210dcd
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