File was renamed from csrc/buz/plate/detector.h |
| | |
| | | #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(); |
| | | } |
| | | |