#include "network.h"
#include "detection_layer.h"
#include "cost_layer.h"
#include "utils.h"
#include "parser.h"
#include "box.h"
#include "demo.h"
Go to the source code of this file.
Functions |
void | print_yolo_detections (FILE **fps, char *id, box *boxes, float **probs, int total, int classes, int w, int h) |
void | run_yolo (int argc, char **argv) |
void | test_yolo (char *cfgfile, char *weightfile, char *filename, float thresh) |
void | train_yolo (char *cfgfile, char *weightfile) |
void | validate_yolo (char *cfgfile, char *weightfile) |
void | validate_yolo_recall (char *cfgfile, char *weightfile) |
Variables |
char * | voc_names [] = {"aeroplane", "bicycle", "bird", "boat", "bottle", "bus", "car", "cat", "chair", "cow", "diningtable", "dog", "horse", "motorbike", "person", "pottedplant", "sheep", "sofa", "train", "tvmonitor"} |
Function Documentation
void print_yolo_detections |
( |
FILE ** |
fps, |
|
|
char * |
id, |
|
|
box * |
boxes, |
|
|
float ** |
probs, |
|
|
int |
total, |
|
|
int |
classes, |
|
|
int |
w, |
|
|
int |
h |
|
) |
| |
void run_yolo |
( |
int |
argc, |
|
|
char ** |
argv |
|
) |
| |
void test_yolo |
( |
char * |
cfgfile, |
|
|
char * |
weightfile, |
|
|
char * |
filename, |
|
|
float |
thresh |
|
) |
| |
void train_yolo |
( |
char * |
cfgfile, |
|
|
char * |
weightfile |
|
) |
| |
Variable Documentation
char* voc_names[] = {"aeroplane", "bicycle", "bird", "boat", "bottle", "bus", "car", "cat", "chair", "cow", "diningtable", "dog", "horse", "motorbike", "person", "pottedplant", "sheep", "sofa", "train", "tvmonitor"} |