| | |
| | | #include <mutex> // std::mutex, std::unique_lock |
| | | #include <condition_variable> // std::condition_variable |
| | | |
| | | #ifdef WIN32 |
| | | #ifdef _WIN32 |
| | | #define OPENCV |
| | | #endif |
| | | |
| | |
| | | #include "opencv2/core/version.hpp" |
| | | #ifndef CV_VERSION_EPOCH |
| | | #include "opencv2/videoio/videoio.hpp" |
| | | #pragma comment(lib, "opencv_world320.lib") |
| | | #define OPENCV_VERSION CVAUX_STR(CV_VERSION_MAJOR)""CVAUX_STR(CV_VERSION_MINOR)""CVAUX_STR(CV_VERSION_REVISION) |
| | | #pragma comment(lib, "opencv_world" OPENCV_VERSION ".lib") |
| | | #else |
| | | #pragma comment(lib, "opencv_core2413.lib") |
| | | #pragma comment(lib, "opencv_imgproc2413.lib") |
| | | #pragma comment(lib, "opencv_highgui2413.lib") |
| | | #define OPENCV_VERSION CVAUX_STR(CV_VERSION_EPOCH)""CVAUX_STR(CV_VERSION_MAJOR)""CVAUX_STR(CV_VERSION_MINOR) |
| | | #pragma comment(lib, "opencv_core" OPENCV_VERSION ".lib") |
| | | #pragma comment(lib, "opencv_imgproc" OPENCV_VERSION ".lib") |
| | | #pragma comment(lib, "opencv_highgui" OPENCV_VERSION ".lib") |
| | | #endif |
| | | |
| | | |