From 0d72420480a6584a3fec734909f6f40267a556c2 Mon Sep 17 00:00:00 2001 From: sergei Date: Fri, 30 Jan 2015 11:57:35 +0300 Subject: [PATCH] HAVE_TEGRA_OPTIMIZATION was fixed --- modules/imgproc/src/corner.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/imgproc/src/corner.cpp b/modules/imgproc/src/corner.cpp index 358cd5802..2e9400409 100644 --- a/modules/imgproc/src/corner.cpp +++ b/modules/imgproc/src/corner.cpp @@ -271,7 +271,8 @@ cornerEigenValsVecs( const Mat& src, Mat& eigenv, int block_size, #ifdef HAVE_TEGRA_OPTIMIZATION if (tegra::cornerEigenValsVecs(src, eigenv, block_size, aperture_size, op_type, k, borderType)) return; -#elif CV_SSE2 +#endif +#if CV_SSE2 bool haveSSE2 = checkHardwareSupport(CV_CPU_SSE2); #endif