mirror of
https://github.com/pjreddie/darknet.git
synced 2023-08-10 21:13:14 +03:00
15 lines
401 B
C
15 lines
401 B
C
#ifndef DEMO_H
|
|
#define DEMO_H
|
|
|
|
#include "image.h"
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
void demo(char *cfgfile, char *weightfile, float thresh, float hier_thresh, int cam_index, const char *filename, char **names, int classes,
|
|
int frame_skip, char *prefix, char *out_filename, int mjpeg_port, int json_port, int dont_show, int ext_output, int letter_box_in);
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|