From a8ff93a0cf274795f0e9c3d66093f1c4c6ccf972 Mon Sep 17 00:00:00 2001 From: zhangzengfei <zhangzengfei@iotlink.com> Date: 星期二, 19 十一月 2019 15:57:02 +0800 Subject: [PATCH] feat: add cloud plate sdk --- csdk.h | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/csdk.h b/csdk.h index e4f9961..666994b 100644 --- a/csdk.h +++ b/csdk.h @@ -42,9 +42,14 @@ // plateid api int c_api_plate_id_init(const cPlateIDCfg *config, char *soPath); -cPlateIDResult* c_api_plate_id_detect(int *plateIDCount, uchar*data, const int w, const int h); +cPlateIDResult* c_api_plate_id_detect(int *plateIDCount, uchar*data, const int w, const int h, const cRECT *rcDetect); int c_api_plate_id_free(); +// plateid cloud sdk +int c_api_plate_id_cloud_init(const cPlateIDCloudSDKCfg *config, char *soPath, char *modelPath); +cPlateIDCloudSDKResult* c_api_plate_id_cloud_detect(int *plateIDCount, uchar *data, const int w, const int h, const cRECT *rcDetect); +void c_api_plate_id_cloud_free(); + #ifdef __cplusplus } #endif -- Gitblit v1.8.0