Commit 4c52dfc9 authored by Vadim Pisarevsky's avatar Vadim Pisarevsky

Merge pull request #3657 from BelBES:sb/tegra_optimization_fix

parents 94431c23 0d724204
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment