From f7997131c6d0928f8f7eca3c62358349ed82c4ac Mon Sep 17 00:00:00 2001
From: Alexey <AlexeyAB@users.noreply.github.com>
Date: Thu, 29 Mar 2018 22:42:22 +0000
Subject: [PATCH] Update Readme.md
---
src/network.h | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/src/network.h b/src/network.h
index 6f4123a..f3bb542 100644
--- a/src/network.h
+++ b/src/network.h
@@ -64,6 +64,10 @@
#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;
@@ -128,6 +132,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);
--
Gitblit v1.10.0