1
2
3
4
5
6
7
8
9
10
11
12
13
| #include "network.h"
| #include "detection_layer.h"
| #include "cost_layer.h"
| #include "utils.h"
| #include "parser.h"
| #include "box.h"
|
| #ifdef OPENCV
| #include "opencv2/highgui/highgui_c.h"
| #endif
|
| void train_swag(char *cfgfile, char *weightfile);
| void run_swag(int argc, char **argv);
|
|