加载模型(从文件) ort::YoloV8* __stdcall yolo11_new_file(const char* onnx_path, int thread_num, int gpu_id);
加载模型(从数据) ort::YoloV8* __stdcall yolo11_new(const char* onnx_data, int onnx_data_len, int thread_num, int gpu_id);
进行推理并输出结果 void __stdcall yolo11_predict(ort::YoloV8* p, unsigned char* pData, int plen, float score, char* out);
进行推理并直接显示结果 void __stdcall yolo11_predict_show(ort::YoloV8* p, unsigned char* pData, int plen, float score);
释放模型资源 void __stdcall yolo11_free(ort::YoloV8* p);