up
zhangmeng
2019-12-19 d8d2bc7b4cf8e4a1f2b2a325d2ca02f0eb409d9c
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 _cPlateIDCloudSDKCfg;
struct _cPlateIDCloudSDKResult;
struct _cIMAGE;
struct _cRECT;
 
namespace csdk_wrap{
    int init_plate_id_cloud_sdk_detector(const cPlateIDCloudSDKCfg *params, char *keyPath, char *modelPath);
    cPlateIDCloudSDKResult* plate_id_cloud_sdk_detect(int *plateIDCount, const cIMAGE *img, const cRECT *rect);
    void uninit_plate_id_cloud_sdk_detector();
}
 
#endif