// // 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* 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); }; YOLOTRACK_API void release(void* handle) { manager_release(handle); }