diff --git a/Makefile b/Makefile index 63cb621b..d8558807 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ OBJDIR=./obj/ CC=gcc NVCC=nvcc -OPTS=-O3 +OPTS=-Ofast LDFLAGS=`pkg-config --libs opencv` -lm -pthread -lstdc++ COMMON=`pkg-config --cflags opencv` -I/usr/local/cuda/include/ CFLAGS=-Wall -Wfatal-errors diff --git a/src/detection.c b/src/detection.c index 2610b486..c61c799c 100644 --- a/src/detection.c +++ b/src/detection.c @@ -157,6 +157,7 @@ void validate_detection(char *cfgfile, char *weightfile) srand(time(0)); list *plist = get_paths("/home/pjreddie/data/voc/val.txt"); + //list *plist = get_paths("/home/pjreddie/data/voc/test.txt"); //list *plist = get_paths("/home/pjreddie/data/voc/val.expanded.txt"); //list *plist = get_paths("/home/pjreddie/data/voc/train.txt"); char **paths = (char **)list_to_array(plist); diff --git a/src/image.c b/src/image.c index 7509ce53..948d3253 100644 --- a/src/image.c +++ b/src/image.c @@ -605,6 +605,7 @@ image load_image_color(char *filename, int w, int h) image out = ipl_to_image(src); cvReleaseImage(&src); if((h && w) && (h != out.h || w != out.w)){ + //printf("resize\n"); image resized = resize_image(out, w, h); free_image(out); out = resized;