mirror of
https://github.com/opencv/opencv.git
synced 2024-11-26 20:20:20 +08:00
f85a615f3f
Update 1 update 2 Update 3 Update 4 Update 5 update 6 Update 7 Update 8 Update 9 Update 10 Update 11 Update 12 Update 13 Update 14 Update 15 Update 16 Update 17 Update 18 Update 19 Update 20 Update 21 Update 22 Removed Headers Update 23 Update 24 Update 25 Update 26 Update 27 Update 28
182 lines
6.8 KiB
C++
182 lines
6.8 KiB
C++
/*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) 2013, OpenCV Foundation, 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"
|
|
#include "opencv2/photo.hpp"
|
|
#include <string>
|
|
|
|
using namespace cv;
|
|
using namespace std;
|
|
|
|
|
|
TEST(Photo_SeamlessClone_normal, regression)
|
|
{
|
|
string folder = string(cvtest::TS::ptr()->get_data_path()) + "cloning/Normal_Cloning/";
|
|
string original_path1 = folder + "source1.png";
|
|
string original_path2 = folder + "destination1.png";
|
|
string original_path3 = folder + "mask.png";
|
|
|
|
Mat source = imread(original_path1, IMREAD_COLOR);
|
|
Mat destination = imread(original_path2, IMREAD_COLOR);
|
|
Mat mask = imread(original_path3, IMREAD_COLOR);
|
|
|
|
ASSERT_FALSE(source.empty()) << "Could not load source image " << original_path1;
|
|
ASSERT_FALSE(destination.empty()) << "Could not load destination image " << original_path2;
|
|
ASSERT_FALSE(mask.empty()) << "Could not load mask image " << original_path3;
|
|
|
|
Mat result;
|
|
Point p;
|
|
p.x = destination.size().width/2;
|
|
p.y = destination.size().height/2;
|
|
seamlessClone(source, destination, mask, p, result, 1);
|
|
|
|
imwrite(folder + "cloned.png", result);
|
|
|
|
}
|
|
|
|
TEST(Photo_SeamlessClone_mixed, regression)
|
|
{
|
|
string folder = string(cvtest::TS::ptr()->get_data_path()) + "cloning/Mixed_Cloning/";
|
|
string original_path1 = folder + "source1.png";
|
|
string original_path2 = folder + "destination1.png";
|
|
string original_path3 = folder + "mask.png";
|
|
|
|
Mat source = imread(original_path1, IMREAD_COLOR);
|
|
Mat destination = imread(original_path2, IMREAD_COLOR);
|
|
Mat mask = imread(original_path3, IMREAD_COLOR);
|
|
|
|
ASSERT_FALSE(source.empty()) << "Could not load source image " << original_path1;
|
|
ASSERT_FALSE(destination.empty()) << "Could not load destination image " << original_path2;
|
|
ASSERT_FALSE(mask.empty()) << "Could not load mask image " << original_path3;
|
|
|
|
Mat result;
|
|
Point p;
|
|
p.x = destination.size().width/2;
|
|
p.y = destination.size().height/2;
|
|
seamlessClone(source, destination, mask, p, result, 2);
|
|
|
|
imwrite(folder + "cloned.png", result);
|
|
|
|
}
|
|
|
|
TEST(Photo_SeamlessClone_featureExchange, regression)
|
|
{
|
|
string folder = string(cvtest::TS::ptr()->get_data_path()) + "cloning/Monochrome_Transfer/";
|
|
string original_path1 = folder + "source1.png";
|
|
string original_path2 = folder + "destination1.png";
|
|
string original_path3 = folder + "mask.png";
|
|
|
|
Mat source = imread(original_path1, IMREAD_COLOR);
|
|
Mat destination = imread(original_path2, IMREAD_COLOR);
|
|
Mat mask = imread(original_path3, IMREAD_COLOR);
|
|
|
|
ASSERT_FALSE(source.empty()) << "Could not load source image " << original_path1;
|
|
ASSERT_FALSE(destination.empty()) << "Could not load destination image " << original_path2;
|
|
ASSERT_FALSE(mask.empty()) << "Could not load mask image " << original_path3;
|
|
|
|
Mat result;
|
|
Point p;
|
|
p.x = destination.size().width/2;
|
|
p.y = destination.size().height/2;
|
|
seamlessClone(source, destination, mask, p, result, 3);
|
|
|
|
imwrite(folder + "cloned.png", result);
|
|
|
|
}
|
|
|
|
TEST(Photo_SeamlessClone_colorChange, regression)
|
|
{
|
|
string folder = string(cvtest::TS::ptr()->get_data_path()) + "cloning/color_change/";
|
|
string original_path1 = folder + "source1.png";
|
|
string original_path2 = folder + "mask.png";
|
|
|
|
Mat source = imread(original_path1, IMREAD_COLOR);
|
|
Mat mask = imread(original_path2, IMREAD_COLOR);
|
|
|
|
ASSERT_FALSE(source.empty()) << "Could not load source image " << original_path1;
|
|
ASSERT_FALSE(mask.empty()) << "Could not load mask image " << original_path2;
|
|
|
|
Mat result;
|
|
colorChange(source, mask, result, 1.5, .5, .5);
|
|
|
|
imwrite(folder + "cloned.png", result);
|
|
|
|
}
|
|
|
|
TEST(Photo_SeamlessClone_illuminationChange, regression)
|
|
{
|
|
string folder = string(cvtest::TS::ptr()->get_data_path()) + "cloning/Illumination_Change/";
|
|
string original_path1 = folder + "source1.png";
|
|
string original_path2 = folder + "mask.png";
|
|
|
|
Mat source = imread(original_path1, IMREAD_COLOR);
|
|
Mat mask = imread(original_path2, IMREAD_COLOR);
|
|
|
|
ASSERT_FALSE(source.empty()) << "Could not load source image " << original_path1;
|
|
ASSERT_FALSE(mask.empty()) << "Could not load mask image " << original_path2;
|
|
|
|
Mat result;
|
|
illuminationChange(source, mask, result, .2, .4);
|
|
|
|
imwrite(folder + "cloned.png", result);
|
|
|
|
}
|
|
|
|
TEST(Photo_SeamlessClone_textureFlattening, regression)
|
|
{
|
|
string folder = string(cvtest::TS::ptr()->get_data_path()) + "cloning/Texture_Flattening/";
|
|
string original_path1 = folder + "source1.png";
|
|
string original_path2 = folder + "mask.png";
|
|
|
|
Mat source = imread(original_path1, IMREAD_COLOR);
|
|
Mat mask = imread(original_path2, IMREAD_COLOR);
|
|
|
|
ASSERT_FALSE(source.empty()) << "Could not load source image " << original_path1;
|
|
ASSERT_FALSE(mask.empty()) << "Could not load mask image " << original_path2;
|
|
|
|
Mat result;
|
|
textureFlattening(source, mask, result, 30, 45, 3);
|
|
|
|
imwrite(folder + "cloned.png", result);
|
|
|
|
}
|