Video Analysis底层库拆分,sdk的go封装
zhangmeng
2019-11-19 5fe6018c5ce963778de2d31666e61649dd02901c
csrc/buz/face/detector.h
New file
@@ -0,0 +1,18 @@
#ifndef _c_wrapper_face_detector_hpp_
#define _c_wrapper_face_detector_hpp_
#include "../base.hpp"
struct _cFacePos;
struct _cIMAGE;
namespace csdk_wrap{
    int init_face_detector(const int tm, const int gi, const int minFaces, const int rollAngle,
                            VecFunc &vec);
    cFacePos* face_detect(int *faceCount, const cIMAGE *img, const int channel);
}
#endif