Video Analysis底层库拆分,sdk的go封装
chenshijun
2020-09-09 a3dc3aa4ec63bcc7844bc4ae7a77f992b9fa74dd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef _c_wrapper_plate_detector_hpp_
#define _c_wrapper_plate_detector_hpp_
 
#include "../../base.hpp"
 
struct _cPlateInfo;
struct _cVehicleITSResult;
struct _cIMAGE;
struct _cRECT;
 
namespace csdk_wrap{
    int init_vehicle_its_detector(int sceneMode, int modelMode, char *keyPath, char *modelPath);
    cVehicleITSResult* vehicle_its_detect(int *plateIDCount, const cIMAGE *img, const cRECT *rect);
    void uninit_vehicle_its_detector();
}
 
#endif