darknet  v3
iseg_layer.h
Go to the documentation of this file.
1 #ifndef ISEG_LAYER_H
2 #define ISEG_LAYER_H
3 
4 #include "darknet.h"
5 #include "layer.h"
6 #include "network.h"
7 
8 layer make_iseg_layer(int batch, int w, int h, int classes, int ids);
9 void forward_iseg_layer(const layer l, network net);
10 void backward_iseg_layer(const layer l, network net);
11 void resize_iseg_layer(layer *l, int w, int h);
12 int iseg_num_detections(layer l, float thresh);
13 
14 #ifdef GPU
15 void forward_iseg_layer_gpu(const layer l, network net);
16 void backward_iseg_layer_gpu(layer l, network net);
17 #endif
18 
19 #endif
layer make_iseg_layer(int batch, int w, int h, int classes, int ids)
Definition: iseg_layer.c:13
void resize_iseg_layer(layer *l, int w, int h)
Definition: iseg_layer.c:58
void forward_iseg_layer(const layer l, network net)
Definition: iseg_layer.c:78
void backward_iseg_layer(const layer l, network net)
Definition: iseg_layer.c:195
list classes
Definition: voc_label.py:9
Definition: darknet.h:119
int iseg_num_detections(layer l, float thresh)