From 08c7cf9c88befd845f00c00d85e40a9eead4b1b3 Mon Sep 17 00:00:00 2001
From: Joseph Redmon <pjreddie@gmail.com>
Date: Sun, 19 Jun 2016 21:28:15 +0000
Subject: [PATCH] no mean on input binarization

---
 src/yolo_demo.c |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/src/yolo_demo.c b/src/yolo_demo.c
index 4e3f839..ec29984 100644
--- a/src/yolo_demo.c
+++ b/src/yolo_demo.c
@@ -8,11 +8,10 @@
 #include <sys/time.h>
 
 #ifdef OPENCV
-#include "opencv2/highgui/highgui.hpp"
-#include "opencv2/imgproc/imgproc.hpp"
+#include "opencv2/highgui/highgui_c.h"
+#include "opencv2/imgproc/imgproc_c.h"
 image ipl_to_image(IplImage* src);
 void convert_yolo_detections(float *predictions, int classes, int num, int square, int side, int w, int h, float thresh, float **probs, box *boxes, int only_objectness);
-void draw_yolo(image im, int num, float thresh, box *boxes, float **probs);
 
 extern char *voc_names[];
 extern image voc_labels[];

--
Gitblit v1.10.0