core: allow to disable including of unsupported/Eigen/CXX11/Tensor
authorAlexander Alekhin <alexander.a.alekhin@gmail.com>
Sun, 4 Oct 2020 15:11:55 +0000 (15:11 +0000)
committerAlexander Alekhin <alexander.a.alekhin@gmail.com>
Sun, 4 Oct 2020 15:14:46 +0000 (15:14 +0000)
- define OPENCV_DISABLE_EIGEN_TENSOR_SUPPORT

modules/core/include/opencv2/core/eigen.hpp

index 3f4be93..51f4147 100644 (file)
 #pragma warning( disable: 4244 ) //conversion from '__int64' to 'int', possible loss of data
 #endif
 
+#if !defined(OPENCV_DISABLE_EIGEN_TENSOR_SUPPORT)
 #if EIGEN_WORLD_VERSION == 3 && EIGEN_MAJOR_VERSION >= 3 \
     && defined(CV_CXX11) && defined(CV_CXX_STD_ARRAY)
 #include <unsupported/Eigen/CXX11/Tensor>
-#define OPENCV_EIGEN_TENSOR_SUPPORT
-#endif // EIGEN_WORLD_VERSION == 3 && EIGEN_MAJOR_VERSION >= 3
+#define OPENCV_EIGEN_TENSOR_SUPPORT 1
+#endif  // EIGEN_WORLD_VERSION == 3 && EIGEN_MAJOR_VERSION >= 3
+#endif  // !defined(OPENCV_DISABLE_EIGEN_TENSOR_SUPPORT)
 
 namespace cv
 {