mirror of
https://github.com/pjreddie/darknet.git
synced 2023-08-10 21:13:14 +03:00
19 lines
492 B
C
19 lines
492 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 w, int h, int n, 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);
|
|
|
|
#ifdef GPU
|
|
void forward_region_layer_gpu(const layer l, network net);
|
|
void backward_region_layer_gpu(layer l, network net);
|
|
#endif
|
|
|
|
#endif
|