1 #ifndef _CLASSIFICATION_C_API_H_ 2 #define _CLASSIFICATION_C_API_H_ 37 int *out_class_id,
float *out_confidence,
int *top_k,
rf_error_type *error);
55 int ymin,
int xmin,
int ymax,
int xmax,
56 int *out_class_id,
float *out_confidence,
int *top_k,
rf_error_type *error);
60 #endif //_CLASSIFICATION_C_API_H_ void rf_classifier_classify_whole(void *classifier_handle, void *image_handle, int *out_class_id, float *out_confidence, int *top_k, rf_error_type *error)
void rf_classifier_close(void *classifier_handle, rf_error_type *error)
void * rf_classifier_init(const char *model_path, rf_error_type *error)
void rf_classifier_classify(void *classifier_handle, void *image_handle, int ymin, int xmin, int ymax, int xmax, int *out_class_id, float *out_confidence, int *top_k, rf_error_type *error)
Definition: api_types.h:74