From fc496d52bf22a0bb257300d3c79be9cd80e722cb Mon Sep 17 00:00:00 2001
From: AlexeyAB <alexeyab84@gmail.com>
Date: Thu, 12 Apr 2018 19:32:57 +0000
Subject: [PATCH] Yolo can be used from Python 2.x using /darknet.py on Linux or darknet/x64/darknet.py on Windows
---
src/demo.c | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/src/demo.c b/src/demo.c
index 2337a0a..65f451f 100644
--- a/src/demo.c
+++ b/src/demo.c
@@ -24,6 +24,7 @@
#ifndef CV_VERSION_EPOCH
#include "opencv2/videoio/videoio_c.h"
#endif
+#include "http_stream.h"
image get_image_from_stream(CvCapture *cap);
static char **demo_names;
@@ -102,7 +103,7 @@
int letter = 0;
int nboxes = 0;
detection *dets = get_network_boxes(&net, det.w, det.h, demo_thresh, demo_thresh, 0, 1, &nboxes, letter);
- if (nms) do_nms_obj_v3(dets, nboxes, l.classes, nms);
+ if (nms) do_nms_obj(dets, nboxes, l.classes, nms);
printf("\033[2J");
printf("\033[1;1H");
@@ -148,7 +149,7 @@
load_weights(&net, weightfile);
}
set_batch_network(&net, 1);
-
+ fuse_conv_batchnorm(net);
srand(2222222);
if(filename){
--
Gitblit v1.10.0