Files
darknet/src/region_layer.h
2018-03-15 15:23:14 -07:00

20 lines
564 B
C

#ifndef REGION_LAYER_H
#define REGION_LAYER_H
#include "darknet.h"
#include "layer.h"
#include "network.h"
layer make_region_layer(int batch, int h, int w, int n, int total, int *mask, int classes, int coords);
void forward_region_layer(const layer l, network net);
void backward_region_layer(const layer l, network net);
void resize_region_layer(layer *l, int w, int h);
int region_num_detections(layer l, float thresh);
#ifdef GPU
void forward_region_layer_gpu(const layer l, network net);
void backward_region_layer_gpu(layer l, network net);
#endif
#endif