// // Created by Scheaven on 2020/3/23. // #ifndef DETECTER_H #define DETECTER_H #include #include #include //#define OPENCV #include "yolo_v2_class.hpp" // imported functions from DLL #ifdef OPENCV #include // C++ #pragma comment(lib, "opencv_core249.lib") #pragma comment(lib, "opencv_imgproc249.lib") #pragma comment(lib, "opencv_highgui249.lib") #endif // OPENCV void draw_boxes(cv::Mat mat_img, std::vector result_vec); void show_result(std::vector result_vec); int detecter_main(); #endif