// // Created by Scheaven on 2020/4/26. // #include "h_interface.h" #include "./lib/human_interface.h" YOLOTRACK_API void* create(const char *conf, int *max_chan) { return manager_create(conf, max_chan); } YOLOTRACK_API void release(void* handle) { manager_release(handle); } YOLOTRACK_API void* get_result(void *handle, const void *img, const int chan){ return frame_result(handle, img, chan); } YOLOTRACK_API void release_result(void *res) { manager_result(res); };