darknet
v3
src
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
7
typedef
layer
detection_layer
;
8
9
detection_layer
make_detection_layer
(
int
batch,
int
inputs,
int
n,
int
size,
int
classes
,
int
coords,
int
rescore);
10
void
forward_detection_layer
(
const
detection_layer
l,
network
net
);
11
void
backward_detection_layer
(
const
detection_layer
l,
network
net
);
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
forward_detection_layer
void forward_detection_layer(const detection_layer l, network net)
Definition:
detection_layer.c:50
layer.h
network
Definition:
darknet.h:434
backward_detection_layer
void backward_detection_layer(const detection_layer l, network net)
Definition:
detection_layer.c:220
detection_layer
layer detection_layer
Definition:
detection_layer.h:7
network.h
make_detection_layer
detection_layer make_detection_layer(int batch, int inputs, int n, int size, int classes, int coords, int rescore)
Definition:
detection_layer.c:14
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
Generated by
1.8.13