派生自 Algorithm/baseDetector

Scheaven
2021-01-13 f7bb0bb5019823183e2498f03ca63d0aeb480a41
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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 dontdraw_bbox, int json_port, int dont_show, int ext_output, int letter_box_in, int time_limit_sec, char *http_post_host, int benchmark, int benchmark_layers);
#ifdef __cplusplus
}
#endif
 
#endif