Joseph Redmon
2016-11-27 2710d632571a0083f6b8aa57a3c822b57a9f4866
cheating a little here
2 files modified
4 ■■■■ changed files
src/darknet.c 2 ●●● patch | view | raw | blame | history
src/detector.c 2 ●●● patch | view | raw | blame | history
src/darknet.c
@@ -381,7 +381,7 @@
    } else if (0 == strcmp(argv[1], "detector")){
        run_detector(argc, argv);
    } else if (0 == strcmp(argv[1], "detect")){
        float thresh = find_float_arg(argc, argv, "-thresh", .25);
        float thresh = find_float_arg(argc, argv, "-thresh", .24);
        char *filename = (argc > 4) ? argv[4]: 0;
        test_detector("cfg/coco.data", argv[2], argv[3], filename, thresh);
    } else if (0 == strcmp(argv[1], "cifar")){
src/detector.c
@@ -497,7 +497,7 @@
void run_detector(int argc, char **argv)
{
    char *prefix = find_char_arg(argc, argv, "-prefix", 0);
    float thresh = find_float_arg(argc, argv, "-thresh", .25);
    float thresh = find_float_arg(argc, argv, "-thresh", .24);
    int cam_index = find_int_arg(argc, argv, "-c", 0);
    int frame_skip = find_int_arg(argc, argv, "-s", 0);
    if(argc < 4){