From 84d6533cb8112f23a34d3de76435a10f4620f4b8 Mon Sep 17 00:00:00 2001
From: AlexeyAB <alexeyab84@gmail.com>
Date: Mon, 23 Oct 2017 13:43:03 +0000
Subject: [PATCH] Fixed OpenCV usage in the yolo_console_dll.cpp
---
src/darknet.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/darknet.c b/src/darknet.c
index 776778a..627b6db 100644
--- a/src/darknet.c
+++ b/src/darknet.c
@@ -381,7 +381,7 @@
} else if (0 == strcmp(argv[1], "detector")){
run_detector(argc, argv);
} else if (0 == strcmp(argv[1], "detect")){
- float thresh = find_float_arg(argc, argv, "-thresh", .25);
+ float thresh = find_float_arg(argc, argv, "-thresh", .24);
char *filename = (argc > 4) ? argv[4]: 0;
test_detector("cfg/coco.data", argv[2], argv[3], filename, thresh);
} else if (0 == strcmp(argv[1], "cifar")){
--
Gitblit v1.10.0