Video Analysis底层库拆分,sdk的go封装
zhangzengfei
2019-11-19 a8ff93a0cf274795f0e9c3d66093f1c4c6ccf972
csrc/buz/plate/eparking/detector.h
File was renamed from csrc/buz/plate/detector.h
@@ -1,15 +1,16 @@
#ifndef _c_wrapper_plate_detector_hpp_
#define _c_wrapper_plate_detector_hpp_
#include "../base.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);
    cPlateIDResult* plate_id_detect(int *plateIDCount, const cIMAGE *img, const cRECT *rect);
    int uninit_plate_id_detector();
}