From 6bfd380bc17942dec42165929dd9dc162431e650 Mon Sep 17 00:00:00 2001
From: Joseph Redmon <pjreddie@burninator.cs.washington.edu>
Date: Thu, 23 Jun 2016 04:47:28 +0000
Subject: [PATCH] hi
---
src/coco_demo.c | 10 +++++++---
Makefile | 4 ++--
src/yolo_kernels.cu | 4 ++++
3 files changed, 13 insertions(+), 5 deletions(-)
diff --git a/Makefile b/Makefile
index 28a0d17..879a66d 100644
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,9 @@
GPU=0
+OPENCV=1
CUDNN=0
-OPENCV=0
DEBUG=0
-ARCH= --gpu-architecture=compute_52 --gpu-code=compute_52
+ARCH= --gpu-architecture=compute_52 --gpu-code=compute_52
VPATH=./src/
EXEC=darknet
diff --git a/src/coco_demo.c b/src/coco_demo.c
index e5e9087..370516d 100644
--- a/src/coco_demo.c
+++ b/src/coco_demo.c
@@ -87,8 +87,6 @@
}
if(!cap) error("Couldn't connect to webcam.\n");
- cvNamedWindow("COCO", CV_WINDOW_NORMAL);
- cvResizeWindow("COCO", 512, 512);
detection_layer l = net.layers[net.n-1];
int j;
@@ -123,16 +121,22 @@
}
int count = 0;
+ cvNamedWindow("COCO", CV_WINDOW_NORMAL);
+ cvMoveWindow("COCO", 0, 0);
+ cvResizeWindow("COCO", 1352, 1013);
+
while(1){
++count;
struct timeval tval_before, tval_after, tval_result;
gettimeofday(&tval_before, NULL);
if(pthread_create(&fetch_thread, 0, fetch_in_thread_coco, 0)) error("Thread creation failed");
if(pthread_create(&detect_thread, 0, detect_in_thread_coco, 0)) error("Thread creation failed");
- //show_image(disp, "COCO");
+ show_image(disp, "COCO");
+ /*
char buff[256];
sprintf(buff, "/home/pjreddie/coco/coco_%05d", count);
save_image(disp, buff);
+ */
free_image(disp);
cvWaitKey(10);
diff --git a/src/yolo_kernels.cu b/src/yolo_kernels.cu
index b320026..09f3961 100644
--- a/src/yolo_kernels.cu
+++ b/src/yolo_kernels.cu
@@ -99,6 +99,10 @@
det = in;
det_s = in_s;
+ cvNamedWindow("YOLO", CV_WINDOW_NORMAL);
+ cvMoveWindow("YOLO", 0, 0);
+ cvResizeWindow("YOLO", 1352, 1013);
+
while(1){
struct timeval tval_before, tval_after, tval_result;
gettimeofday(&tval_before, NULL);
--
Gitblit v1.10.0