darknet
v3
src
yolo_layer.h
Go to the documentation of this file.
1
#ifndef YOLO_LAYER_H
2
#define YOLO_LAYER_H
3
4
#include "
darknet.h
"
5
#include "
layer.h
"
6
#include "
network.h
"
7
8
layer
make_yolo_layer
(
int
batch,
int
w,
int
h,
int
n,
int
total,
int
*mask,
int
classes
);
9
void
forward_yolo_layer
(
const
layer
l,
network
net
);
10
void
backward_yolo_layer
(
const
layer
l,
network
net
);
11
void
resize_yolo_layer
(
layer
*l,
int
w,
int
h);
12
int
yolo_num_detections
(
layer
l,
float
thresh);
13
14
#ifdef GPU
15
void
forward_yolo_layer_gpu(
const
layer
l,
network
net
);
16
void
backward_yolo_layer_gpu(
layer
l,
network
net
);
17
#endif
18
19
#endif
make_yolo_layer
layer make_yolo_layer(int batch, int w, int h, int n, int total, int *mask, int classes)
Definition:
yolo_layer.c:13
layer.h
resize_yolo_layer
void resize_yolo_layer(layer *l, int w, int h)
Definition:
yolo_layer.c:63
forward_yolo_layer
void forward_yolo_layer(const layer l, network net)
Definition:
yolo_layer.c:132
backward_yolo_layer
void backward_yolo_layer(const layer l, network net)
Definition:
yolo_layer.c:242
darknet.h
network
Definition:
darknet.h:434
network.h
detector-scipy-opencv.net
net
Definition:
detector-scipy-opencv.py:39
voc_label.classes
list classes
Definition:
voc_label.py:9
layer
Definition:
darknet.h:119
yolo_num_detections
int yolo_num_detections(layer l, float thresh)
Definition:
yolo_layer.c:275
Generated by
1.8.13