AlexeyAB
2017-10-18 a4b591e8c2bed294c69ecea4f0fddd4f4d8c47ee
Fixed yolo_console_dll.cpp
2 files modified
4 ■■■■ changed files
.circleci/config.yml 2 ●●● patch | view | raw | blame | history
src/yolo_console_dll.cpp 2 ●●● patch | view | raw | blame | history
.circleci/config.yml
@@ -6,7 +6,7 @@
    working_directory: ~/work
    steps:
      - checkout
      - run: make LIBSO=1
      - run: make LIBSO=1 -j 8
      - run: |
          ulimit -c unlimited
          ./darknet
src/yolo_console_dll.cpp
@@ -218,7 +218,7 @@
            auto img = detector.load_image(filename);
            std::vector<bbox_t> result_vec = detector.detect(img);
            detector.free_image(img);
            show_result(result_vec, obj_names);
            show_console_result(result_vec, obj_names);
#endif          
        }
        catch (std::exception &e) { std::cerr << "exception: " << e.what() << "\n"; getchar(); }