派生自 libgowrapper/face

zhangmeng
2020-01-15 0ffd95f2278e860736e46f8b73f357470f5a3d91
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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