darknet  v3
detection_layer.h
Go to the documentation of this file.
1 #ifndef DETECTION_LAYER_H
2 #define DETECTION_LAYER_H
3 
4 #include "layer.h"
5 #include "network.h"
6 
8 
9 detection_layer make_detection_layer(int batch, int inputs, int n, int size, int classes, int coords, int rescore);
12 
13 #ifdef GPU
14 void forward_detection_layer_gpu(const detection_layer l, network net);
15 void backward_detection_layer_gpu(detection_layer l, network net);
16 #endif
17 
18 #endif
void forward_detection_layer(const detection_layer l, network net)
void backward_detection_layer(const detection_layer l, network net)
layer detection_layer
detection_layer make_detection_layer(int batch, int inputs, int n, int size, int classes, int coords, int rescore)
list classes
Definition: voc_label.py:9
Definition: darknet.h:119