test_denoising.cpp 6.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
/*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.
//
//
//                           License Agreement
//                For Open Source Computer Vision Library
//
// Copyright (C) 2000-2008, Intel Corporation, all rights reserved.
// Copyright (C) 2009, Willow Garage Inc., all rights reserved.
// Third party copyrights are property of their respective owners.
//
// 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 the copyright holders 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 "test_precomp.hpp"
44
#include "opencv2/photo.hpp"
45 46 47 48 49
#include <string>

using namespace cv;
using namespace std;

A
Andrey Kamaev 已提交
50 51 52 53 54
//#define DUMP_RESULTS

#ifdef DUMP_RESULTS
#  define DUMP(image, path) imwrite(path, image)
#else
A
Andrey Kamaev 已提交
55
#  define DUMP(image, path)
A
Andrey Kamaev 已提交
56
#endif
57 58


59
TEST(Photo_DenoisingGrayscale, regression)
60
{
A
Andrey Kamaev 已提交
61 62 63
    string folder = string(cvtest::TS::ptr()->get_data_path()) + "denoising/";
    string original_path = folder + "lena_noised_gaussian_sigma=10.png";
    string expected_path = folder + "lena_noised_denoised_grayscale_tw=7_sw=21_h=10.png";
64

65 66
    Mat original = imread(original_path, IMREAD_GRAYSCALE);
    Mat expected = imread(expected_path, IMREAD_GRAYSCALE);
67

A
Andrey Kamaev 已提交
68 69
    ASSERT_FALSE(original.empty()) << "Could not load input image " << original_path;
    ASSERT_FALSE(expected.empty()) << "Could not load reference image " << expected_path;
70

A
Andrey Kamaev 已提交
71 72 73 74 75
    Mat result;
    fastNlMeansDenoising(original, result, 10);

    DUMP(result, expected_path + ".res.png");

I
Ilya Lavrenov 已提交
76
    ASSERT_EQ(0, cvtest::norm(result, expected, NORM_L2));
77 78
}

79
TEST(Photo_DenoisingColored, regression)
80
{
A
Andrey Kamaev 已提交
81 82 83
    string folder = string(cvtest::TS::ptr()->get_data_path()) + "denoising/";
    string original_path = folder + "lena_noised_gaussian_sigma=10.png";
    string expected_path = folder + "lena_noised_denoised_lab12_tw=7_sw=21_h=10_h2=10.png";
84

85 86
    Mat original = imread(original_path, IMREAD_COLOR);
    Mat expected = imread(expected_path, IMREAD_COLOR);
87

A
Andrey Kamaev 已提交
88 89
    ASSERT_FALSE(original.empty()) << "Could not load input image " << original_path;
    ASSERT_FALSE(expected.empty()) << "Could not load reference image " << expected_path;
90

A
Andrey Kamaev 已提交
91 92
    Mat result;
    fastNlMeansDenoisingColored(original, result, 10, 10);
93

A
Andrey Kamaev 已提交
94
    DUMP(result, expected_path + ".res.png");
95

I
Ilya Lavrenov 已提交
96
    ASSERT_EQ(0, cvtest::norm(result, expected, NORM_L2));
97 98
}

99
TEST(Photo_DenoisingGrayscaleMulti, regression)
100 101
{
    const int imgs_count = 3;
A
Andrey Kamaev 已提交
102 103 104
    string folder = string(cvtest::TS::ptr()->get_data_path()) + "denoising/";

    string expected_path = folder + "lena_noised_denoised_multi_tw=7_sw=21_h=15.png";
105
    Mat expected = imread(expected_path, IMREAD_GRAYSCALE);
A
Andrey Kamaev 已提交
106
    ASSERT_FALSE(expected.empty()) << "Could not load reference image " << expected_path;
107

A
Andrey Kamaev 已提交
108 109
    vector<Mat> original(imgs_count);
    for (int i = 0; i < imgs_count; i++)
110
    {
A
Andrey Kamaev 已提交
111
        string original_path = format("%slena_noised_gaussian_sigma=20_multi_%d.png", folder.c_str(), i);
112
        original[i] = imread(original_path, IMREAD_GRAYSCALE);
A
Andrey Kamaev 已提交
113
        ASSERT_FALSE(original[i].empty()) << "Could not load input image " << original_path;
114 115
    }

A
Andrey Kamaev 已提交
116 117
    Mat result;
    fastNlMeansDenoisingMulti(original, result, imgs_count / 2, imgs_count, 15);
118

A
Andrey Kamaev 已提交
119 120
    DUMP(result, expected_path + ".res.png");

I
Ilya Lavrenov 已提交
121
    ASSERT_EQ(0, cvtest::norm(result, expected, NORM_L2));
122 123
}

124
TEST(Photo_DenoisingColoredMulti, regression)
125 126
{
    const int imgs_count = 3;
A
Andrey Kamaev 已提交
127 128 129
    string folder = string(cvtest::TS::ptr()->get_data_path()) + "denoising/";

    string expected_path = folder + "lena_noised_denoised_multi_lab12_tw=7_sw=21_h=10_h2=15.png";
130
    Mat expected = imread(expected_path, IMREAD_COLOR);
A
Andrey Kamaev 已提交
131
    ASSERT_FALSE(expected.empty()) << "Could not load reference image " << expected_path;
132

A
Andrey Kamaev 已提交
133 134
    vector<Mat> original(imgs_count);
    for (int i = 0; i < imgs_count; i++)
135
    {
A
Andrey Kamaev 已提交
136
        string original_path = format("%slena_noised_gaussian_sigma=20_multi_%d.png", folder.c_str(), i);
137
        original[i] = imread(original_path, IMREAD_COLOR);
A
Andrey Kamaev 已提交
138
        ASSERT_FALSE(original[i].empty()) << "Could not load input image " << original_path;
139 140
    }

A
Andrey Kamaev 已提交
141 142
    Mat result;
    fastNlMeansDenoisingColoredMulti(original, result, imgs_count / 2, imgs_count, 10, 15);
143

A
Andrey Kamaev 已提交
144
    DUMP(result, expected_path + ".res.png");
145

I
Ilya Lavrenov 已提交
146
    ASSERT_EQ(0, cvtest::norm(result, expected, NORM_L2));
A
Andrey Kamaev 已提交
147
}
A
Andrey Kamaev 已提交
148 149 150 151 152 153 154 155 156 157 158

TEST(Photo_White, issue_2646)
{
    cv::Mat img(50, 50, CV_8UC1, cv::Scalar::all(255));
    cv::Mat filtered;
    cv::fastNlMeansDenoising(img, filtered);

    int nonWhitePixelsCount = (int)img.total() - cv::countNonZero(filtered == img);

    ASSERT_EQ(0, nonWhitePixelsCount);
}