From 65bff2683bdffe7ec82eacd8144c70c09d19c88d Mon Sep 17 00:00:00 2001
From: AlexeyAB <alexeyab84@gmail.com>
Date: Fri, 16 Feb 2018 20:55:37 +0000
Subject: [PATCH] It takes into account the Difficult for calculating mAP for PascalVOC
---
src/classifier.c | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/src/classifier.c b/src/classifier.c
index 5e718c5..37f02d5 100644
--- a/src/classifier.c
+++ b/src/classifier.c
@@ -706,8 +706,9 @@
strtok(input, "\n");
}
image im = load_image_color(input, 0, 0);
- image r = resize_min(im, size);
- resize_network(&net, r.w, r.h);
+ image r = letterbox_image(im, net.w, net.h);
+ //image r = resize_min(im, size);
+ //resize_network(&net, r.w, r.h);
printf("%d %d\n", r.w, r.h);
float *X = r.data;
--
Gitblit v1.10.0