AlexeyAB
2018-04-02 c83865bb61ffa3dbdfdceddfc7b46d93859d89d3
src/network.h
@@ -2,6 +2,7 @@
#ifndef NETWORK_H
#define NETWORK_H
#include <stdint.h>
#include "layer.h"
#ifdef __cplusplus
@@ -20,7 +21,7 @@
    float *workspace;
    int n;
    int batch;
    int *seen;
   int *seen;
    float epoch;
    int subdivisions;
    float momentum;
@@ -56,6 +57,7 @@
    float exposure;
    float saturation;
    float hue;
   int small_object;
    int gpu_index;
    tree *hierarchy;
@@ -63,6 +65,11 @@
    #ifdef GPU
    float **input_gpu;
    float **truth_gpu;
   float **input16_gpu;
   float **output16_gpu;
   size_t *max_input16_size;
   size_t *max_output16_size;
   int wait_stream;
    #endif
} network;
@@ -126,6 +133,8 @@
void set_batch_network(network *net, int b);
int get_network_input_size(network net);
float get_network_cost(network net);
detection *get_network_boxes(network *net, int w, int h, float thresh, float hier, int *map, int relative, int *num, int letter);
void free_detections(detection *dets, int n);
int get_network_nuisance(network net);
int get_network_background(network net);