Commit e98e58c6 authored by Alexander Alekhin's avatar Alexander Alekhin

Merge pull request #15432 from atinfinity:removed-tegra-optimization

parents 1661e839 3b9f9813
......@@ -303,11 +303,6 @@ void medianBlur( InputArray _src0, OutputArray _dst, int ksize )
//CV_IPP_RUN_FAST(ipp_medianFilter(src0, dst, ksize));
#ifdef HAVE_TEGRA_OPTIMIZATION
if (tegra::useTegra() && tegra::medianBlur(src0, dst, ksize))
return;
#endif
CV_CPU_DISPATCH(medianBlur, (src0, dst, ksize),
CV_CPU_DISPATCH_MODES_ALL);
}
......
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