zhangmeng
2020-01-06 a10f7bf10c195421b089cda0c13f2195c614cb80
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 _cPlateIDCfg;
struct _cPlateIDResult;
struct _cIMAGE;
struct _cRECT;
 
namespace csdk_wrap{
    int init_plate_id_detector(const cPlateIDCfg *params, char *soPath);
    cPlateIDResult* plate_id_detect(int *plateIDCount, const cIMAGE *img, const cRECT *rect);
    int uninit_plate_id_detector();
}
 
#endif