17 lines
249 B
C
Executable File
17 lines
249 B
C
Executable File
#ifndef __EB3516_NNIE_H__
|
|
#define __EB3516_NNIE_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <stdbool.h>
|
|
|
|
bool eb3516Yolov3Init(const char *model_file, const char *pic_file);
|
|
void eb3516Yolov3Exit(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif |