From 0a8391e816be243f2d75b643d12778a0c5295455 Mon Sep 17 00:00:00 2001
From: AlexeyAB <kikots@mail.ru>
Date: Sun, 06 Aug 2017 19:21:46 +0000
Subject: [PATCH] Added to Makefile the path to include of cuDNN
---
src/yolo_console_dll.cpp | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/src/yolo_console_dll.cpp b/src/yolo_console_dll.cpp
index 7cc82cc..e9c6abe 100644
--- a/src/yolo_console_dll.cpp
+++ b/src/yolo_console_dll.cpp
@@ -108,6 +108,7 @@
else { // image file
cv::Mat mat_img = cv::imread(filename);
std::vector<bbox_t> result_vec = detector.detect(mat_img);
+ result_vec = detector.tracking(result_vec); // comment it - if track_id is not required
draw_boxes(mat_img, result_vec, obj_names);
show_result(result_vec, obj_names);
}
--
Gitblit v1.10.0