Video Analysis底层库拆分,sdk的go封装
zhangzengfei
2019-11-14 6c5479bec34af351eebf956adf993975ab12e2ae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _c_wrapper_plate_detector_hpp_
#define _c_wrapper_plate_detector_hpp_
 
#include "../base.hpp"
 
struct _cPlateIDResult;
struct _cIMAGE;
 
namespace csdk_wrap{
    int init_plate_id_detector(const int width, const int height, char *soPath);
    cPlateIDResult* plate_id_detect(int *plateIDCount, const cIMAGE *img);
    int uninit_plate_id_detector();
}
 
#endif