KanduAI SDK  1.1
face_detection_c_api.h
Go to the documentation of this file.
1 #ifndef _FACE_DETECTION_C_API_H_
2 #define _FACE_DETECTION_C_API_H_
3 
4 #include "api_types.h"
5 
6 extern "C" {
14 void *rf_face_detection_init(const char *detection_path,
15  rf_error_type *error);
16 
23 void rf_face_detection_close(void *face_detection_handle, rf_error_type *error);
24 
25 
37 void rf_face_detection_detect(void *rf_face_descriptor, void *image_handle,
38  float score_threshold,
39  float nms_threshold,
40  rf_face_descriptor_list *out_descriptors, rf_error_type *error);
41 }
42 
43 #endif //_FACE_DETECTION_C_API_H_
void rf_face_detection_close(void *face_detection_handle, rf_error_type *error)
void rf_face_detection_detect(void *rf_face_descriptor, void *image_handle, float score_threshold, float nms_threshold, rf_face_descriptor_list *out_descriptors, rf_error_type *error)
Definition: api_types.h:58
Definition: api_types.h:66
void * rf_face_detection_init(const char *detection_path, rf_error_type *error)
Definition: api_types.h:74