14 lines
218 B
C
14 lines
218 B
C
#pragma once
|
|
|
|
#include "yolo_runtime_types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int write_result_json(const char* path, const char* model_config, const yolo_result_list_t* results);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|