Video Analysis底层库拆分,sdk的go封装
zhangzengfei
2019-11-19 a8ff93a0cf274795f0e9c3d66093f1c4c6ccf972
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef _c_wrapper_face_property_h_
#define _c_wrapper_face_property_h_
 
#include "../base.hpp"
 
struct _cThftResult;
struct _cFacePos;
struct _cIMAGE;
 
namespace csdk_wrap{
    int init_face_property(const int tm, VecFunc &vec);
    cThftResult face_property(const cFacePos &pos, const cIMAGE *img, const int chan);
}
#endif