Joseph Redmon
2015-04-21 feabcc31de9dfb93b59d5a598a03b617dabe86da
gonna fuck shit up
3 files modified
4 ■■■ changed files
Makefile 2 ●●● patch | view | raw | blame | history
src/detection.c 1 ●●●● patch | view | raw | blame | history
src/image.c 1 ●●●● patch | view | raw | blame | history
Makefile
@@ -8,7 +8,7 @@
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
src/detection.c
@@ -157,6 +157,7 @@
    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);
src/image.c
@@ -605,6 +605,7 @@
    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;