e30d6793
Zou XiKun
v0.0.1
|
1
2
3
4
5
6
7
8
9
10
|
#ifndef _HUMANFEATURES_H_
#define _HUMANFEATURES_H_
#include "human_features.h"
int human_features_init(void *&handle, char*dbpath, int gpuid);
int human_features_process(void * handle, sy_img * batch_img, int batch_size, hf_result*& result);
int human_feature_release(void *& handle);
#endif
|