派生自 libgowrapper/face

zhangmeng
2020-01-13 aa25f30d2d5dee9134ffb48885bbe9f3be6dc4ee
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef _c_wrapper_face_tracker_h_
#define _c_wrapper_face_tracker_h_
 
#include "base.hpp"
 
struct _cRECT;
struct _cFaceInfo;
struct _cIMAGE;
 
namespace csdk_wrap{
    int init_face_tracker(const int tm, const int gi,const int w, const int h,
                              const int maxFaces, const int detinterval, const int sampleSize,
                              VecFunc &vec);
    cRECT* face_track_only(int *faceCount, const cIMAGE *img, const int chan);
    cFaceInfo* face_track_detect(int *faceCount, const cIMAGE *img, const int chan);
 
    cFaceInfo* face_track(int *faceCount, const cIMAGE *img, const int chan);
    int face_track_resize(const int chan, const int w, const int h);
}
#endif