fixed _MSC_VER check for at least vs2013 in dbt_face_detection sample

This commit is contained in:
Eric Sommerlade 2016-10-31 13:48:41 +00:00
parent 72e4e9d43d
commit 752b10e410

View File

@ -1,4 +1,4 @@
#if defined(__linux__) || defined(LINUX) || defined(__APPLE__) || defined(ANDROID) || (defined(_MSC_VER) && _MSC_VER>1800)
#if defined(__linux__) || defined(LINUX) || defined(__APPLE__) || defined(ANDROID) || (defined(_MSC_VER) && _MSC_VER>=1800)
#include <opencv2/imgproc.hpp> // Gaussian Blur
#include <opencv2/core.hpp> // Basic OpenCV structures (cv::Mat, Scalar)