From 1b2c70f82a9ec88c60bb277f9f5f0073c96691e7 Mon Sep 17 00:00:00 2001 From: AlexeyAB <alexeyab84@gmail.com> Date: Tue, 03 Apr 2018 13:42:00 +0000 Subject: [PATCH] Detection is accelerated by 7 percent (fused conv and batch_norm layers) --- src/image.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/src/image.h b/src/image.h index 165a624..b88cb4b 100644 --- a/src/image.h +++ b/src/image.h @@ -23,6 +23,7 @@ void draw_label(image a, int r, int c, image label, const float *rgb); void write_label(image a, int r, int c, image *characters, char *string, float *rgb); void draw_detections(image im, int num, float thresh, box *boxes, float **probs, char **names, image **labels, int classes); +void draw_detections_v3(image im, detection *dets, int num, float thresh, char **names, image **alphabet, int classes); image image_distance(image a, image b); void scale_image(image m, float s); image crop_image(image im, int dx, int dy, int w, int h); -- Gitblit v1.10.0