vehicle_features.h
586 Bytes
#ifndef _VEHICLEFEATURES_H_
#define _VEHICLEFEATURES_H_
#include "vf.h"
#include "vehicle_head_detect.h"
#ifndef __INT8__
#define __INT8__
typedef unsigned char int8;
#endif
int vhd_features_init(void *&handle, char*dbpath, int gpuid);
int vf_features_init(void *&handle, char*dbpath, int gpuid);
int vhd_features_process(void * handle, sy_img * batch_img, int batch_size, vhd_result*& result);
int vf_features_process(void * handle, sy_img * batch_img, int batch_size, int8**& result);
int vhd_feature_release(void *& handle);
int vf_feature_release(void *& handle);
#endif