Blame view

src/VPT-1/snapshot_analysis/vehicle_features.h 586 Bytes
e30d6793   Zou XiKun   v0.0.1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  
  
  #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