darknet  v3
Functions
detection_layer.c File Reference
#include "detection_layer.h"
#include "activations.h"
#include "softmax_layer.h"
#include "blas.h"
#include "box.h"
#include "cuda.h"
#include "utils.h"
#include <stdio.h>
#include <assert.h>
#include <string.h>
#include <stdlib.h>
Include dependency graph for detection_layer.c:

Go to the source code of this file.

Functions

detection_layer make_detection_layer (int batch, int inputs, int n, int side, int classes, int coords, int rescore)
 
void forward_detection_layer (const detection_layer l, network net)
 
void backward_detection_layer (const detection_layer l, network net)
 
void get_detection_detections (layer l, int w, int h, float thresh, detection *dets)
 

Function Documentation

◆ backward_detection_layer()

void backward_detection_layer ( const detection_layer  l,
network  net 
)

Definition at line 220 of file detection_layer.c.

◆ forward_detection_layer()

void forward_detection_layer ( const detection_layer  l,
network  net 
)

Definition at line 50 of file detection_layer.c.

◆ get_detection_detections()

void get_detection_detections ( layer  l,
int  w,
int  h,
float  thresh,
detection dets 
)

Definition at line 225 of file detection_layer.c.

◆ make_detection_layer()

detection_layer make_detection_layer ( int  batch,
int  inputs,
int  n,
int  side,
int  classes,
int  coords,
int  rescore 
)

Definition at line 14 of file detection_layer.c.