fixed _MSC_VER check for at least vs2013 in dbt_face_detection sample

pull/7552/head
Eric Sommerlade 8 years ago
parent 72e4e9d43d
commit 752b10e410
  1. 2
      samples/cpp/dbt_face_detection.cpp

@ -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)

Loading…
Cancel
Save