Add Tegra optimization for fastNlMeansDenoising

This commit is contained in:
Andrey Kamaev 2012-09-28 18:56:36 +04:00
parent a8e7f91e34
commit 06e7101795
2 changed files with 10 additions and 1 deletions

View File

@ -52,6 +52,11 @@ void cv::fastNlMeansDenoising( InputArray _src, OutputArray _dst, float h,
_dst.create(src.size(), src.type());
Mat dst = _dst.getMat();
#ifdef HAVE_TEGRA_OPTIMIZATION
if(tegra::fastNlMeansDenoising(src, dst, h, templateWindowSize, searchWindowSize))
return;
#endif
switch (src.type()) {
case CV_8U:
parallel_for(cv::BlockedRange(0, src.rows),

View File

@ -49,4 +49,8 @@
#include "opencv2/photo/photo.hpp"
#ifdef HAVE_TEGRA_OPTIMIZATION
#include "opencv2/photo/photo_tegra.hpp"
#endif
#endif