2012-08-19 17:13:58 +08:00
|
|
|
/*M///////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
|
|
|
|
//
|
|
|
|
// By downloading, copying, installing or using the software you agree to this license.
|
|
|
|
// If you do not agree to this license, do not download, install,
|
|
|
|
// copy or use the software.
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// Intel License Agreement
|
|
|
|
// For Open Source Computer Vision Library
|
|
|
|
//
|
|
|
|
// Copyright (C) 2000, Intel Corporation, all rights reserved.
|
|
|
|
// Third party copyrights are property of their respective icvers.
|
|
|
|
//
|
|
|
|
// Redistribution and use in source and binary forms, with or without modification,
|
|
|
|
// are permitted provided that the following conditions are met:
|
|
|
|
//
|
|
|
|
// * Redistribution's of source code must retain the above copyright notice,
|
|
|
|
// this list of conditions and the following disclaimer.
|
|
|
|
//
|
|
|
|
// * Redistribution's in binary form must reproduce the above copyright notice,
|
|
|
|
// this list of conditions and the following disclaimer in the documentation
|
|
|
|
// and/or other materials provided with the distribution.
|
|
|
|
//
|
|
|
|
// * The name of Intel Corporation may not be used to endorse or promote products
|
|
|
|
// derived from this software without specific prior written permission.
|
|
|
|
//
|
|
|
|
// This software is provided by the copyright holders and contributors "as is" and
|
|
|
|
// any express or implied warranties, including, but not limited to, the implied
|
|
|
|
// warranties of merchantability and fitness for a particular purpose are disclaimed.
|
|
|
|
// In no event shall the Intel Corporation or contributors be liable for any direct,
|
|
|
|
// indirect, incidental, special, exemplary, or consequential damages
|
|
|
|
// (including, but not limited to, procurement of substitute goods or services;
|
|
|
|
// loss of use, data, or profits; or business interruption) however caused
|
|
|
|
// and on any theory of liability, whether in contract, strict liability,
|
|
|
|
// or tort (including negligence or otherwise) arising in any way out of
|
|
|
|
// the use of this software, even if advised of the possibility of such damage.
|
|
|
|
//
|
|
|
|
//M*/
|
|
|
|
|
|
|
|
#include "precomp.hpp"
|
2014-02-17 01:54:51 +08:00
|
|
|
|
2012-08-19 17:13:58 +08:00
|
|
|
#include "fast_nlmeans_denoising_invoker.hpp"
|
|
|
|
#include "fast_nlmeans_multi_denoising_invoker.hpp"
|
2014-02-17 01:54:51 +08:00
|
|
|
#include "fast_nlmeans_denoising_opencl.hpp"
|
2012-08-19 17:13:58 +08:00
|
|
|
|
2012-09-20 21:27:48 +08:00
|
|
|
void cv::fastNlMeansDenoising( InputArray _src, OutputArray _dst, float h,
|
2012-09-19 20:42:39 +08:00
|
|
|
int templateWindowSize, int searchWindowSize)
|
2012-08-21 21:16:06 +08:00
|
|
|
{
|
2014-02-17 01:54:51 +08:00
|
|
|
CV_OCL_RUN(_src.dims() <= 2 && (_src.isUMat() || _dst.isUMat()),
|
|
|
|
ocl_fastNlMeansDenoising(_src, _dst, h, templateWindowSize, searchWindowSize))
|
|
|
|
|
2012-08-21 21:16:06 +08:00
|
|
|
Mat src = _src.getMat();
|
|
|
|
_dst.create(src.size(), src.type());
|
|
|
|
Mat dst = _dst.getMat();
|
2012-09-17 21:18:04 +08:00
|
|
|
|
2012-09-28 22:56:36 +08:00
|
|
|
#ifdef HAVE_TEGRA_OPTIMIZATION
|
|
|
|
if(tegra::fastNlMeansDenoising(src, dst, h, templateWindowSize, searchWindowSize))
|
|
|
|
return;
|
|
|
|
#endif
|
|
|
|
|
2012-08-19 17:13:58 +08:00
|
|
|
switch (src.type()) {
|
|
|
|
case CV_8U:
|
2013-05-30 22:44:33 +08:00
|
|
|
parallel_for_(cv::Range(0, src.rows),
|
2012-08-19 17:13:58 +08:00
|
|
|
FastNlMeansDenoisingInvoker<uchar>(
|
|
|
|
src, dst, templateWindowSize, searchWindowSize, h));
|
|
|
|
break;
|
|
|
|
case CV_8UC2:
|
2013-05-30 22:44:33 +08:00
|
|
|
parallel_for_(cv::Range(0, src.rows),
|
2012-08-19 17:13:58 +08:00
|
|
|
FastNlMeansDenoisingInvoker<cv::Vec2b>(
|
|
|
|
src, dst, templateWindowSize, searchWindowSize, h));
|
|
|
|
break;
|
|
|
|
case CV_8UC3:
|
2013-05-30 22:44:33 +08:00
|
|
|
parallel_for_(cv::Range(0, src.rows),
|
2012-08-19 17:13:58 +08:00
|
|
|
FastNlMeansDenoisingInvoker<cv::Vec3b>(
|
|
|
|
src, dst, templateWindowSize, searchWindowSize, h));
|
|
|
|
break;
|
|
|
|
default:
|
2013-04-08 03:23:53 +08:00
|
|
|
CV_Error(Error::StsBadArg,
|
2012-09-17 21:18:04 +08:00
|
|
|
"Unsupported image format! Only CV_8UC1, CV_8UC2 and CV_8UC3 are supported");
|
2012-08-19 17:13:58 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-21 21:16:06 +08:00
|
|
|
void cv::fastNlMeansDenoisingColored( InputArray _src, OutputArray _dst,
|
2012-09-20 21:27:48 +08:00
|
|
|
float h, float hForColorComponents,
|
2012-09-19 20:42:39 +08:00
|
|
|
int templateWindowSize, int searchWindowSize)
|
2012-08-19 17:13:58 +08:00
|
|
|
{
|
2014-02-19 22:34:34 +08:00
|
|
|
if (_src.type() != CV_8UC3)
|
|
|
|
{
|
2013-04-08 03:23:53 +08:00
|
|
|
CV_Error(Error::StsBadArg, "Type of input image should be CV_8UC3!");
|
2012-08-19 17:13:58 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-02-19 22:34:34 +08:00
|
|
|
CV_OCL_RUN(_src.dims() <= 2 && (_dst.isUMat() || _src.isUMat()),
|
|
|
|
ocl_fastNlMeansDenoisingColored(_src, _dst, h, hForColorComponents,
|
|
|
|
templateWindowSize, searchWindowSize))
|
|
|
|
|
|
|
|
Mat src = _src.getMat();
|
|
|
|
_dst.create(src.size(), src.type());
|
|
|
|
Mat dst = _dst.getMat();
|
|
|
|
|
2012-08-19 17:13:58 +08:00
|
|
|
Mat src_lab;
|
2013-04-06 22:16:51 +08:00
|
|
|
cvtColor(src, src_lab, COLOR_LBGR2Lab);
|
2012-09-17 21:18:04 +08:00
|
|
|
|
2012-08-19 17:13:58 +08:00
|
|
|
Mat l(src.size(), CV_8U);
|
|
|
|
Mat ab(src.size(), CV_8UC2);
|
|
|
|
Mat l_ab[] = { l, ab };
|
|
|
|
int from_to[] = { 0,0, 1,1, 2,2 };
|
|
|
|
mixChannels(&src_lab, 1, l_ab, 2, from_to, 3);
|
2012-09-17 21:18:04 +08:00
|
|
|
|
2012-09-19 20:42:39 +08:00
|
|
|
fastNlMeansDenoising(l, l, h, templateWindowSize, searchWindowSize);
|
|
|
|
fastNlMeansDenoising(ab, ab, hForColorComponents, templateWindowSize, searchWindowSize);
|
2012-08-19 17:13:58 +08:00
|
|
|
|
|
|
|
Mat l_ab_denoised[] = { l, ab };
|
|
|
|
Mat dst_lab(src.size(), src.type());
|
|
|
|
mixChannels(l_ab_denoised, 2, &dst_lab, 1, from_to, 3);
|
|
|
|
|
2013-04-06 22:16:51 +08:00
|
|
|
cvtColor(dst_lab, dst, COLOR_Lab2LBGR);
|
2012-08-19 17:13:58 +08:00
|
|
|
}
|
|
|
|
|
2012-09-17 21:18:04 +08:00
|
|
|
static void fastNlMeansDenoisingMultiCheckPreconditions(
|
|
|
|
const std::vector<Mat>& srcImgs,
|
2012-08-19 17:13:58 +08:00
|
|
|
int imgToDenoiseIndex, int temporalWindowSize,
|
2012-09-17 21:18:04 +08:00
|
|
|
int templateWindowSize, int searchWindowSize)
|
2012-08-19 17:13:58 +08:00
|
|
|
{
|
2013-08-01 07:24:47 +08:00
|
|
|
int src_imgs_size = static_cast<int>(srcImgs.size());
|
2014-02-13 19:15:05 +08:00
|
|
|
if (src_imgs_size == 0)
|
|
|
|
{
|
2013-04-08 03:23:53 +08:00
|
|
|
CV_Error(Error::StsBadArg, "Input images vector should not be empty!");
|
2012-08-19 17:13:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (temporalWindowSize % 2 == 0 ||
|
|
|
|
searchWindowSize % 2 == 0 ||
|
|
|
|
templateWindowSize % 2 == 0) {
|
2013-04-08 03:23:53 +08:00
|
|
|
CV_Error(Error::StsBadArg, "All windows sizes should be odd!");
|
2012-08-19 17:13:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int temporalWindowHalfSize = temporalWindowSize / 2;
|
2012-09-17 21:18:04 +08:00
|
|
|
if (imgToDenoiseIndex - temporalWindowHalfSize < 0 ||
|
|
|
|
imgToDenoiseIndex + temporalWindowHalfSize >= src_imgs_size)
|
|
|
|
{
|
2013-04-08 03:23:53 +08:00
|
|
|
CV_Error(Error::StsBadArg,
|
2012-08-19 17:13:58 +08:00
|
|
|
"imgToDenoiseIndex and temporalWindowSize "
|
2014-03-03 01:04:17 +08:00
|
|
|
"should be chosen corresponding srcImgs size!");
|
2012-08-19 17:13:58 +08:00
|
|
|
}
|
|
|
|
|
2014-02-13 19:15:05 +08:00
|
|
|
for (int i = 1; i < src_imgs_size; i++)
|
|
|
|
if (srcImgs[0].size() != srcImgs[i].size() || srcImgs[0].type() != srcImgs[i].type())
|
|
|
|
{
|
2013-04-08 03:23:53 +08:00
|
|
|
CV_Error(Error::StsBadArg, "Input images should have the same size and type!");
|
2012-08-19 17:13:58 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-19 20:42:39 +08:00
|
|
|
void cv::fastNlMeansDenoisingMulti( InputArrayOfArrays _srcImgs, OutputArray _dst,
|
2012-08-19 17:13:58 +08:00
|
|
|
int imgToDenoiseIndex, int temporalWindowSize,
|
2012-09-20 21:27:48 +08:00
|
|
|
float h, int templateWindowSize, int searchWindowSize)
|
2012-08-21 21:16:06 +08:00
|
|
|
{
|
2013-02-25 00:14:01 +08:00
|
|
|
std::vector<Mat> srcImgs;
|
2012-08-21 21:16:06 +08:00
|
|
|
_srcImgs.getMatVector(srcImgs);
|
2012-09-17 21:18:04 +08:00
|
|
|
|
2012-08-19 17:13:58 +08:00
|
|
|
fastNlMeansDenoisingMultiCheckPreconditions(
|
2012-09-17 21:18:04 +08:00
|
|
|
srcImgs, imgToDenoiseIndex,
|
2014-02-13 19:15:05 +08:00
|
|
|
temporalWindowSize, templateWindowSize, searchWindowSize);
|
|
|
|
|
2012-08-21 21:16:06 +08:00
|
|
|
_dst.create(srcImgs[0].size(), srcImgs[0].type());
|
|
|
|
Mat dst = _dst.getMat();
|
2012-08-19 17:13:58 +08:00
|
|
|
|
2014-02-13 19:15:05 +08:00
|
|
|
switch (srcImgs[0].type())
|
|
|
|
{
|
2012-08-19 17:13:58 +08:00
|
|
|
case CV_8U:
|
2013-05-30 22:44:33 +08:00
|
|
|
parallel_for_(cv::Range(0, srcImgs[0].rows),
|
2012-08-19 17:13:58 +08:00
|
|
|
FastNlMeansMultiDenoisingInvoker<uchar>(
|
2012-09-17 21:18:04 +08:00
|
|
|
srcImgs, imgToDenoiseIndex, temporalWindowSize,
|
2012-08-19 17:13:58 +08:00
|
|
|
dst, templateWindowSize, searchWindowSize, h));
|
|
|
|
break;
|
|
|
|
case CV_8UC2:
|
2013-05-30 22:44:33 +08:00
|
|
|
parallel_for_(cv::Range(0, srcImgs[0].rows),
|
2012-08-19 17:13:58 +08:00
|
|
|
FastNlMeansMultiDenoisingInvoker<cv::Vec2b>(
|
2012-09-17 21:18:04 +08:00
|
|
|
srcImgs, imgToDenoiseIndex, temporalWindowSize,
|
2012-08-19 17:13:58 +08:00
|
|
|
dst, templateWindowSize, searchWindowSize, h));
|
|
|
|
break;
|
|
|
|
case CV_8UC3:
|
2013-05-30 22:44:33 +08:00
|
|
|
parallel_for_(cv::Range(0, srcImgs[0].rows),
|
2012-08-19 17:13:58 +08:00
|
|
|
FastNlMeansMultiDenoisingInvoker<cv::Vec3b>(
|
2012-09-17 21:18:04 +08:00
|
|
|
srcImgs, imgToDenoiseIndex, temporalWindowSize,
|
2012-08-19 17:13:58 +08:00
|
|
|
dst, templateWindowSize, searchWindowSize, h));
|
|
|
|
break;
|
|
|
|
default:
|
2013-04-08 03:23:53 +08:00
|
|
|
CV_Error(Error::StsBadArg,
|
2012-08-19 17:13:58 +08:00
|
|
|
"Unsupported matrix format! Only uchar, Vec2b, Vec3b are supported");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-19 20:42:39 +08:00
|
|
|
void cv::fastNlMeansDenoisingColoredMulti( InputArrayOfArrays _srcImgs, OutputArray _dst,
|
2012-08-19 17:13:58 +08:00
|
|
|
int imgToDenoiseIndex, int temporalWindowSize,
|
2012-09-20 21:27:48 +08:00
|
|
|
float h, float hForColorComponents,
|
2012-09-19 20:42:39 +08:00
|
|
|
int templateWindowSize, int searchWindowSize)
|
2012-08-19 17:13:58 +08:00
|
|
|
{
|
2013-02-25 00:14:01 +08:00
|
|
|
std::vector<Mat> srcImgs;
|
2012-08-21 21:16:06 +08:00
|
|
|
_srcImgs.getMatVector(srcImgs);
|
2012-09-17 21:18:04 +08:00
|
|
|
|
2012-08-19 17:13:58 +08:00
|
|
|
fastNlMeansDenoisingMultiCheckPreconditions(
|
2012-09-17 21:18:04 +08:00
|
|
|
srcImgs, imgToDenoiseIndex,
|
2014-02-13 19:15:05 +08:00
|
|
|
temporalWindowSize, templateWindowSize, searchWindowSize);
|
2012-09-17 21:18:04 +08:00
|
|
|
|
2012-08-21 21:16:06 +08:00
|
|
|
_dst.create(srcImgs[0].size(), srcImgs[0].type());
|
|
|
|
Mat dst = _dst.getMat();
|
2012-08-19 17:13:58 +08:00
|
|
|
|
2013-08-01 07:24:47 +08:00
|
|
|
int src_imgs_size = static_cast<int>(srcImgs.size());
|
2012-08-19 17:13:58 +08:00
|
|
|
|
2014-02-13 19:15:05 +08:00
|
|
|
if (srcImgs[0].type() != CV_8UC3)
|
|
|
|
{
|
2013-04-08 03:23:53 +08:00
|
|
|
CV_Error(Error::StsBadArg, "Type of input images should be CV_8UC3!");
|
2012-08-19 17:13:58 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int from_to[] = { 0,0, 1,1, 2,2 };
|
|
|
|
|
|
|
|
// TODO convert only required images
|
2013-02-25 00:14:01 +08:00
|
|
|
std::vector<Mat> src_lab(src_imgs_size);
|
|
|
|
std::vector<Mat> l(src_imgs_size);
|
|
|
|
std::vector<Mat> ab(src_imgs_size);
|
2014-02-13 19:15:05 +08:00
|
|
|
for (int i = 0; i < src_imgs_size; i++)
|
|
|
|
{
|
2012-08-19 17:13:58 +08:00
|
|
|
src_lab[i] = Mat::zeros(srcImgs[0].size(), CV_8UC3);
|
|
|
|
l[i] = Mat::zeros(srcImgs[0].size(), CV_8UC1);
|
|
|
|
ab[i] = Mat::zeros(srcImgs[0].size(), CV_8UC2);
|
2013-04-06 22:16:51 +08:00
|
|
|
cvtColor(srcImgs[i], src_lab[i], COLOR_LBGR2Lab);
|
2012-09-17 21:18:04 +08:00
|
|
|
|
2012-08-19 17:13:58 +08:00
|
|
|
Mat l_ab[] = { l[i], ab[i] };
|
|
|
|
mixChannels(&src_lab[i], 1, l_ab, 2, from_to, 3);
|
|
|
|
}
|
2012-09-17 21:18:04 +08:00
|
|
|
|
2012-08-19 17:13:58 +08:00
|
|
|
Mat dst_l;
|
|
|
|
Mat dst_ab;
|
|
|
|
|
|
|
|
fastNlMeansDenoisingMulti(
|
2012-09-19 20:42:39 +08:00
|
|
|
l, dst_l, imgToDenoiseIndex, temporalWindowSize,
|
|
|
|
h, templateWindowSize, searchWindowSize);
|
2012-08-19 17:13:58 +08:00
|
|
|
|
|
|
|
fastNlMeansDenoisingMulti(
|
2012-09-19 20:42:39 +08:00
|
|
|
ab, dst_ab, imgToDenoiseIndex, temporalWindowSize,
|
|
|
|
hForColorComponents, templateWindowSize, searchWindowSize);
|
2012-08-19 17:13:58 +08:00
|
|
|
|
|
|
|
Mat l_ab_denoised[] = { dst_l, dst_ab };
|
|
|
|
Mat dst_lab(srcImgs[0].size(), srcImgs[0].type());
|
|
|
|
mixChannels(l_ab_denoised, 2, &dst_lab, 1, from_to, 3);
|
|
|
|
|
2013-04-06 22:16:51 +08:00
|
|
|
cvtColor(dst_lab, dst, COLOR_Lab2LBGR);
|
2012-08-19 17:13:58 +08:00
|
|
|
}
|