2014-09-26 16:26:10 +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.
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// 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 "seamless_cloning.hpp"
|
2014-09-29 17:26:54 +08:00
|
|
|
#include "opencv2/highgui.hpp"
|
2014-09-26 16:26:10 +08:00
|
|
|
|
2014-09-29 17:26:54 +08:00
|
|
|
#include <iostream>
|
2014-09-26 16:26:10 +08:00
|
|
|
#include <complex>
|
|
|
|
|
|
|
|
using namespace cv;
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
|
2014-09-29 14:49:42 +08:00
|
|
|
void Cloning::computeGradientX( const Mat &img, Mat &gx)
|
2014-09-26 16:26:10 +08:00
|
|
|
{
|
|
|
|
Mat kernel = Mat::zeros(1, 3, CV_8S);
|
|
|
|
kernel.at<char>(0,2) = 1;
|
|
|
|
kernel.at<char>(0,1) = -1;
|
|
|
|
filter2D(img, gx, CV_32F, kernel);
|
|
|
|
}
|
|
|
|
|
2014-09-29 14:49:42 +08:00
|
|
|
void Cloning::computeGradientY( const Mat &img, Mat &gy)
|
2014-09-26 16:26:10 +08:00
|
|
|
{
|
|
|
|
Mat kernel = Mat::zeros(3, 1, CV_8S);
|
|
|
|
kernel.at<char>(2,0) = 1;
|
|
|
|
kernel.at<char>(1,0) = -1;
|
|
|
|
filter2D(img, gy, CV_32F, kernel);
|
|
|
|
}
|
|
|
|
|
2014-10-01 14:20:57 +08:00
|
|
|
void Cloning::computeLaplacianX( const Mat &img, Mat &laplacianX)
|
2014-09-26 16:26:10 +08:00
|
|
|
{
|
|
|
|
Mat kernel = Mat::zeros(1, 3, CV_8S);
|
|
|
|
kernel.at<char>(0,0) = -1;
|
|
|
|
kernel.at<char>(0,1) = 1;
|
2014-10-01 14:20:57 +08:00
|
|
|
filter2D(img, laplacianX, CV_32F, kernel);
|
2014-09-26 16:26:10 +08:00
|
|
|
}
|
|
|
|
|
2014-10-01 14:20:57 +08:00
|
|
|
void Cloning::computeLaplacianY( const Mat &img, Mat &laplacianY)
|
2014-09-26 16:26:10 +08:00
|
|
|
{
|
|
|
|
Mat kernel = Mat::zeros(3, 1, CV_8S);
|
|
|
|
kernel.at<char>(0,0) = -1;
|
|
|
|
kernel.at<char>(1,0) = 1;
|
2014-10-01 14:20:57 +08:00
|
|
|
filter2D(img, laplacianY, CV_32F, kernel);
|
2014-09-26 16:26:10 +08:00
|
|
|
}
|
|
|
|
|
2014-10-02 10:50:08 +08:00
|
|
|
void Cloning::dst(const std::vector<double>& mod_diff, std::vector<double>& sineTransform,int h,int w)
|
2014-09-26 16:26:10 +08:00
|
|
|
{
|
|
|
|
|
|
|
|
unsigned long int idx;
|
|
|
|
|
|
|
|
Mat temp = Mat(2*h+2,1,CV_32F);
|
|
|
|
Mat res = Mat(h,1,CV_32F);
|
|
|
|
|
|
|
|
Mat planes[] = {Mat_<float>(temp), Mat::zeros(temp.size(), CV_32F)};
|
|
|
|
|
|
|
|
Mat result;
|
|
|
|
int p=0;
|
|
|
|
for(int i=0;i<w;i++)
|
|
|
|
{
|
|
|
|
temp.at<float>(0,0) = 0.0;
|
|
|
|
|
|
|
|
for(int j=0,r=1;j<h;j++,r++)
|
|
|
|
{
|
|
|
|
idx = j*w+i;
|
|
|
|
temp.at<float>(r,0) = (float) mod_diff[idx];
|
|
|
|
}
|
|
|
|
|
|
|
|
temp.at<float>(h+1,0)=0.0;
|
|
|
|
|
|
|
|
for(int j=h-1, r=h+2;j>=0;j--,r++)
|
|
|
|
{
|
|
|
|
idx = j*w+i;
|
|
|
|
temp.at<float>(r,0) = (float) (-1.0 * mod_diff[idx]);
|
|
|
|
}
|
|
|
|
|
|
|
|
merge(planes, 2, result);
|
|
|
|
|
|
|
|
dft(result,result,0,0);
|
|
|
|
|
|
|
|
Mat planes1[] = {Mat::zeros(result.size(), CV_32F), Mat::zeros(result.size(), CV_32F)};
|
|
|
|
|
|
|
|
split(result, planes1);
|
|
|
|
|
|
|
|
std::complex<double> two_i = std::sqrt(std::complex<double>(-1));
|
|
|
|
|
|
|
|
double factor = -2*imag(two_i);
|
|
|
|
|
|
|
|
for(int c=1,z=0;c<h+1;c++,z++)
|
|
|
|
{
|
|
|
|
res.at<float>(z,0) = (float) (planes1[1].at<float>(c,0)/factor);
|
|
|
|
}
|
|
|
|
|
|
|
|
for(int q=0,z=0;q<h;q++,z++)
|
|
|
|
{
|
|
|
|
idx = q*w+p;
|
|
|
|
sineTransform[idx] = res.at<float>(z,0);
|
|
|
|
}
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-02 10:50:08 +08:00
|
|
|
void Cloning::idst(const std::vector<double>& mod_diff, std::vector<double>& sineTransform,int h,int w)
|
2014-09-26 16:26:10 +08:00
|
|
|
{
|
|
|
|
int nn = h+1;
|
|
|
|
unsigned long int idx;
|
|
|
|
dst(mod_diff,sineTransform,h,w);
|
|
|
|
for(int i= 0;i<h;i++)
|
|
|
|
for(int j=0;j<w;j++)
|
|
|
|
{
|
|
|
|
idx = i*w + j;
|
|
|
|
sineTransform[idx] = (double) (2*sineTransform[idx])/nn;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-10-02 10:50:08 +08:00
|
|
|
void Cloning::transpose(const std::vector<double>& mat, std::vector<double>& mat_t,int h,int w)
|
2014-09-26 16:26:10 +08:00
|
|
|
{
|
|
|
|
|
|
|
|
Mat tmp = Mat(h,w,CV_32FC1);
|
|
|
|
unsigned long int idx;
|
|
|
|
for(int i = 0 ; i < h;i++)
|
|
|
|
{
|
|
|
|
for(int j = 0 ; j < w; j++)
|
|
|
|
{
|
|
|
|
|
|
|
|
idx = i*(w) + j;
|
|
|
|
tmp.at<float>(i,j) = (float) mat[idx];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Mat tmp_t = tmp.t();
|
|
|
|
|
|
|
|
for(int i = 0;i < tmp_t.size().height; i++)
|
|
|
|
for(int j=0;j<tmp_t.size().width;j++)
|
|
|
|
{
|
|
|
|
idx = i*tmp_t.size().width + j;
|
|
|
|
mat_t[idx] = tmp_t.at<float>(i,j);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-02 10:50:08 +08:00
|
|
|
void Cloning::solve(const Mat &img, const std::vector<double>& mod_diff, Mat &result)
|
2014-09-26 16:26:10 +08:00
|
|
|
{
|
|
|
|
int w = img.size().width;
|
|
|
|
int h = img.size().height;
|
|
|
|
|
|
|
|
unsigned long int idx,idx1;
|
|
|
|
|
2014-10-02 10:50:08 +08:00
|
|
|
std::vector<double> sineTransform((h-2)*(w-2), 0.);
|
|
|
|
std::vector<double> sineTranformTranspose((h-2)*(w-2), 0.);
|
|
|
|
std::vector<double> denom((h-2)*(w-2), 0.);
|
|
|
|
std::vector<double> invsineTransform((h-2)*(w-2), 0.);
|
|
|
|
std::vector<double> invsineTransform_t((h-2)*(w-2), 0.);
|
|
|
|
std::vector<double> img_d((h)*(w), 0.);
|
2014-09-26 16:26:10 +08:00
|
|
|
|
|
|
|
dst(mod_diff,sineTransform,h-2,w-2);
|
|
|
|
|
2014-10-02 10:50:08 +08:00
|
|
|
transpose(sineTransform,sineTranformTranspose,h-2,w-2);
|
2014-09-26 16:26:10 +08:00
|
|
|
|
2014-10-02 10:50:08 +08:00
|
|
|
dst(sineTranformTranspose,sineTransform,w-2,h-2);
|
2014-09-26 16:26:10 +08:00
|
|
|
|
2014-10-02 10:50:08 +08:00
|
|
|
transpose(sineTransform,sineTranformTranspose,w-2,h-2);
|
2014-09-26 16:26:10 +08:00
|
|
|
|
|
|
|
|
2014-10-02 10:50:08 +08:00
|
|
|
for(int j = 0,cx = 1; j < h-2; j++,cx++)
|
2014-09-26 16:26:10 +08:00
|
|
|
{
|
2014-10-02 10:50:08 +08:00
|
|
|
for(int i = 0, cy=1 ; i < w-2;i++,cy++)
|
2014-09-26 16:26:10 +08:00
|
|
|
{
|
|
|
|
idx = j*(w-2) + i;
|
|
|
|
denom[idx] = (float) 2*cos(CV_PI*cy/( (double) (w-1))) - 2 + 2*cos(CV_PI*cx/((double) (h-1))) - 2;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for(idx = 0 ; idx < (unsigned)(w-2)*(h-2) ;idx++)
|
|
|
|
{
|
2014-10-02 10:50:08 +08:00
|
|
|
sineTranformTranspose[idx] = sineTranformTranspose[idx]/denom[idx];
|
2014-09-26 16:26:10 +08:00
|
|
|
}
|
|
|
|
|
2014-10-02 10:50:08 +08:00
|
|
|
idst(sineTranformTranspose,invsineTransform,h-2,w-2);
|
2014-09-26 16:26:10 +08:00
|
|
|
|
|
|
|
transpose(invsineTransform,invsineTransform_t,h-2,w-2);
|
|
|
|
|
|
|
|
idst(invsineTransform_t,invsineTransform,w-2,h-2);
|
|
|
|
|
|
|
|
transpose(invsineTransform,invsineTransform_t,w-2,h-2);
|
|
|
|
|
|
|
|
for(int i = 0 ; i < h;i++)
|
|
|
|
{
|
|
|
|
for(int j = 0 ; j < w; j++)
|
|
|
|
{
|
|
|
|
idx = i*w + j;
|
|
|
|
img_d[idx] = (double)img.at<uchar>(i,j);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for(int i = 1 ; i < h-1;i++)
|
|
|
|
{
|
|
|
|
for(int j = 1 ; j < w-1; j++)
|
|
|
|
{
|
|
|
|
idx = i*w + j;
|
|
|
|
img_d[idx] = 0.0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for(int i = 1,id1=0 ; i < h-1;i++,id1++)
|
|
|
|
{
|
|
|
|
for(int j = 1,id2=0 ; j < w-1; j++,id2++)
|
|
|
|
{
|
|
|
|
idx = i*w + j;
|
|
|
|
idx1= id1*(w-2) + id2;
|
|
|
|
img_d[idx] = invsineTransform_t[idx1];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for(int i = 0 ; i < h;i++)
|
|
|
|
{
|
|
|
|
for(int j = 0 ; j < w; j++)
|
|
|
|
{
|
|
|
|
idx = i*w + j;
|
|
|
|
if(img_d[idx] < 0.0)
|
|
|
|
result.at<uchar>(i,j) = 0;
|
|
|
|
else if(img_d[idx] > 255.0)
|
|
|
|
result.at<uchar>(i,j) = 255;
|
|
|
|
else
|
|
|
|
result.at<uchar>(i,j) = (uchar) img_d[idx];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-01 14:20:57 +08:00
|
|
|
void Cloning::poisson_solver(const Mat &img, Mat &laplacianX , Mat &laplacianY, Mat &result)
|
2014-09-26 16:26:10 +08:00
|
|
|
{
|
|
|
|
|
2014-10-01 14:20:57 +08:00
|
|
|
const int w = img.size().width;
|
|
|
|
const int h = img.size().height;
|
2014-09-26 16:26:10 +08:00
|
|
|
|
|
|
|
unsigned long int idx;
|
|
|
|
|
|
|
|
Mat lap = Mat(img.size(),CV_32FC1);
|
|
|
|
|
2014-10-01 14:20:57 +08:00
|
|
|
lap = laplacianX + laplacianY;
|
2014-09-26 16:26:10 +08:00
|
|
|
|
|
|
|
Mat bound = img.clone();
|
|
|
|
|
|
|
|
rectangle(bound, Point(1, 1), Point(img.cols-2, img.rows-2), Scalar::all(0), -1);
|
|
|
|
|
2014-10-02 10:50:08 +08:00
|
|
|
std::vector<double> boundary_point(h*w, 0.);
|
2014-09-26 16:26:10 +08:00
|
|
|
|
|
|
|
for(int i =1;i<h-1;i++)
|
|
|
|
for(int j=1;j<w-1;j++)
|
|
|
|
{
|
|
|
|
idx=i*w + j;
|
|
|
|
boundary_point[idx] = -4*(int)bound.at<uchar>(i,j) + (int)bound.at<uchar>(i,(j+1)) + (int)bound.at<uchar>(i,(j-1))
|
|
|
|
+ (int)bound.at<uchar>(i-1,j) + (int)bound.at<uchar>(i+1,j);
|
|
|
|
}
|
|
|
|
|
|
|
|
Mat diff = Mat(h,w,CV_32FC1);
|
|
|
|
for(int i =0;i<h;i++)
|
|
|
|
{
|
|
|
|
for(int j=0;j<w;j++)
|
|
|
|
{
|
|
|
|
idx = i*w+j;
|
|
|
|
diff.at<float>(i,j) = (float) (lap.at<float>(i,j) - boundary_point[idx]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-02 10:50:08 +08:00
|
|
|
std::vector<double> mod_diff((h-2)*(w-2), 0.);
|
2014-09-26 16:26:10 +08:00
|
|
|
for(int i = 0 ; i < h-2;i++)
|
|
|
|
{
|
|
|
|
for(int j = 0 ; j < w-2; j++)
|
|
|
|
{
|
|
|
|
idx = i*(w-2) + j;
|
|
|
|
mod_diff[idx] = diff.at<float>(i+1,j+1);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
///////////////////////////////////////////////////// Find DST /////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
solve(img,mod_diff,result);
|
|
|
|
}
|
|
|
|
|
2014-10-01 14:20:57 +08:00
|
|
|
void Cloning::init_var(const Mat &destination, const Mat &binaryMask)
|
2014-09-26 16:26:10 +08:00
|
|
|
{
|
2014-10-01 14:20:57 +08:00
|
|
|
destinationGradientX = Mat(destination.size(),CV_32FC3);
|
|
|
|
destinationGradientY = Mat(destination.size(),CV_32FC3);
|
|
|
|
patchGradientX = Mat(destination.size(),CV_32FC3);
|
|
|
|
patchGradientY = Mat(destination.size(),CV_32FC3);
|
2014-09-26 16:26:10 +08:00
|
|
|
|
2014-10-01 14:20:57 +08:00
|
|
|
binaryMaskFloat = Mat(binaryMask.size(),CV_32FC1);
|
|
|
|
binaryMaskFloatInverted = Mat(binaryMask.size(),CV_32FC1);
|
2014-09-26 16:26:10 +08:00
|
|
|
}
|
|
|
|
|
2014-09-29 17:26:54 +08:00
|
|
|
void Cloning::compute_derivatives(const Mat& destination, const Mat &patch, const Mat &binaryMask)
|
2014-09-26 16:26:10 +08:00
|
|
|
{
|
2014-09-29 17:26:54 +08:00
|
|
|
init_var(destination,binaryMask);
|
2014-09-26 16:26:10 +08:00
|
|
|
|
2014-09-29 17:33:22 +08:00
|
|
|
computeGradientX(destination,destinationGradientX);
|
|
|
|
computeGradientY(destination,destinationGradientY);
|
2014-09-26 16:26:10 +08:00
|
|
|
|
2014-09-29 17:26:54 +08:00
|
|
|
computeGradientX(patch,patchGradientX);
|
|
|
|
computeGradientY(patch,patchGradientY);
|
2014-09-26 16:26:10 +08:00
|
|
|
|
|
|
|
Mat Kernel(Size(3, 3), CV_8UC1);
|
|
|
|
Kernel.setTo(Scalar(1));
|
2014-09-29 17:26:54 +08:00
|
|
|
erode(binaryMask, binaryMask, Kernel, Point(-1,-1), 3);
|
2014-09-26 16:26:10 +08:00
|
|
|
|
2014-09-29 17:26:54 +08:00
|
|
|
binaryMask.convertTo(binaryMaskFloat,CV_32FC1,1.0/255.0);
|
2014-09-26 16:26:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void Cloning::scalar_product(Mat mat, float r, float g, float b)
|
|
|
|
{
|
|
|
|
vector <Mat> channels;
|
|
|
|
split(mat,channels);
|
|
|
|
multiply(channels[2],r,channels[2]);
|
|
|
|
multiply(channels[1],g,channels[1]);
|
|
|
|
multiply(channels[0],b,channels[0]);
|
|
|
|
merge(channels,mat);
|
|
|
|
}
|
|
|
|
|
2014-09-29 15:13:51 +08:00
|
|
|
void Cloning::array_product(const cv::Mat& lhs, const cv::Mat& rhs, cv::Mat& result) const
|
2014-09-26 16:26:10 +08:00
|
|
|
{
|
2014-09-29 15:13:51 +08:00
|
|
|
vector <Mat> lhs_channels;
|
|
|
|
vector <Mat> result_channels;
|
|
|
|
|
|
|
|
split(lhs,lhs_channels);
|
|
|
|
split(result,result_channels);
|
|
|
|
|
|
|
|
for(int chan = 0 ; chan < 3 ; ++chan)
|
|
|
|
multiply(lhs_channels[chan],rhs,result_channels[chan]);
|
|
|
|
|
|
|
|
merge(result_channels,result);
|
2014-09-26 16:26:10 +08:00
|
|
|
}
|
|
|
|
|
2014-10-01 14:20:57 +08:00
|
|
|
void Cloning::poisson(const Mat &destination)
|
2014-09-26 16:26:10 +08:00
|
|
|
{
|
2014-10-01 14:20:57 +08:00
|
|
|
Mat laplacianX = Mat(destination.size(),CV_32FC3);
|
|
|
|
Mat laplacianY = Mat(destination.size(),CV_32FC3);
|
2014-09-26 16:26:10 +08:00
|
|
|
|
2014-10-01 14:20:57 +08:00
|
|
|
laplacianX = destinationGradientX + patchGradientX;
|
|
|
|
laplacianY = destinationGradientY + patchGradientY;
|
2014-09-26 16:26:10 +08:00
|
|
|
|
2014-10-01 14:20:57 +08:00
|
|
|
computeLaplacianX(laplacianX,laplacianX);
|
|
|
|
computeLaplacianY(laplacianY,laplacianY);
|
2014-09-26 16:26:10 +08:00
|
|
|
|
2014-10-01 14:20:57 +08:00
|
|
|
split(laplacianX,rgbx_channel);
|
|
|
|
split(laplacianY,rgby_channel);
|
2014-09-26 16:26:10 +08:00
|
|
|
|
2014-09-29 17:26:54 +08:00
|
|
|
split(destination,output);
|
2014-09-26 16:26:10 +08:00
|
|
|
|
2014-10-01 14:20:57 +08:00
|
|
|
for(int chan = 0 ; chan < 3 ; ++chan)
|
|
|
|
{
|
|
|
|
poisson_solver(output[chan], rgbx_channel[chan], rgby_channel[chan], output[chan]);
|
|
|
|
}
|
2014-09-26 16:26:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void Cloning::evaluate(const Mat &I, const Mat &wmask, const Mat &cloned)
|
|
|
|
{
|
|
|
|
bitwise_not(wmask,wmask);
|
|
|
|
|
2014-09-29 17:26:54 +08:00
|
|
|
wmask.convertTo(binaryMaskFloatInverted,CV_32FC1,1.0/255.0);
|
2014-09-26 16:26:10 +08:00
|
|
|
|
2014-09-29 17:33:22 +08:00
|
|
|
array_product(destinationGradientX,binaryMaskFloatInverted, destinationGradientX);
|
|
|
|
array_product(destinationGradientY,binaryMaskFloatInverted, destinationGradientY);
|
2014-09-26 16:26:10 +08:00
|
|
|
|
2014-10-01 14:20:57 +08:00
|
|
|
poisson(I);
|
2014-09-26 16:26:10 +08:00
|
|
|
|
|
|
|
merge(output,cloned);
|
|
|
|
}
|
|
|
|
|
2014-09-29 17:26:54 +08:00
|
|
|
void Cloning::normal_clone(const Mat &destination, const Mat &patch, const Mat &binaryMask, Mat &cloned, int flag)
|
2014-09-26 16:26:10 +08:00
|
|
|
{
|
2014-09-29 14:49:42 +08:00
|
|
|
int w = destination.size().width;
|
|
|
|
int h = destination.size().height;
|
|
|
|
int channel = destination.channels();
|
2014-09-26 16:26:10 +08:00
|
|
|
|
2014-09-29 17:26:54 +08:00
|
|
|
compute_derivatives(destination,patch,binaryMask);
|
2014-09-26 16:26:10 +08:00
|
|
|
|
2014-09-29 14:49:42 +08:00
|
|
|
switch(flag)
|
2014-09-26 16:26:10 +08:00
|
|
|
{
|
2014-09-29 14:49:42 +08:00
|
|
|
case NORMAL_CLONE:
|
2014-09-29 17:33:22 +08:00
|
|
|
array_product(patchGradientX,binaryMaskFloat, patchGradientX);
|
|
|
|
array_product(patchGradientY,binaryMaskFloat, patchGradientY);
|
2014-09-29 14:49:42 +08:00
|
|
|
break;
|
2014-09-26 16:26:10 +08:00
|
|
|
|
2014-09-29 14:49:42 +08:00
|
|
|
case MIXED_CLONE:
|
2014-09-26 16:26:10 +08:00
|
|
|
|
2014-09-29 17:26:54 +08:00
|
|
|
for(int i=0;i < h; i++)
|
2014-09-26 16:26:10 +08:00
|
|
|
{
|
2014-09-29 17:26:54 +08:00
|
|
|
for(int j=0; j < w; j++)
|
2014-09-26 16:26:10 +08:00
|
|
|
{
|
2014-09-29 17:26:54 +08:00
|
|
|
for(int c=0;c<channel;++c)
|
2014-09-26 16:26:10 +08:00
|
|
|
{
|
2014-09-29 17:26:54 +08:00
|
|
|
if(abs(patchGradientX.at<float>(i,j*channel+c) - patchGradientY.at<float>(i,j*channel+c)) >
|
2014-09-29 17:33:22 +08:00
|
|
|
abs(destinationGradientX.at<float>(i,j*channel+c) - destinationGradientY.at<float>(i,j*channel+c)))
|
2014-09-29 17:26:54 +08:00
|
|
|
{
|
|
|
|
|
2014-09-29 17:33:22 +08:00
|
|
|
patchGradientX.at<float>(i,j*channel+c) = patchGradientX.at<float>(i,j*channel+c)
|
2014-09-29 17:26:54 +08:00
|
|
|
* binaryMaskFloat.at<float>(i,j);
|
2014-09-29 17:33:22 +08:00
|
|
|
patchGradientY.at<float>(i,j*channel+c) = patchGradientY.at<float>(i,j*channel+c)
|
2014-09-29 17:26:54 +08:00
|
|
|
* binaryMaskFloat.at<float>(i,j);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-09-29 17:33:22 +08:00
|
|
|
patchGradientX.at<float>(i,j*channel+c) = destinationGradientX.at<float>(i,j*channel+c)
|
2014-09-29 17:26:54 +08:00
|
|
|
* binaryMaskFloat.at<float>(i,j);
|
2014-09-29 17:33:22 +08:00
|
|
|
patchGradientY.at<float>(i,j*channel+c) = destinationGradientY.at<float>(i,j*channel+c)
|
2014-09-29 17:26:54 +08:00
|
|
|
* binaryMaskFloat.at<float>(i,j);
|
|
|
|
}
|
2014-09-26 16:26:10 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-09-29 17:26:54 +08:00
|
|
|
break;
|
2014-09-26 16:26:10 +08:00
|
|
|
|
2014-09-29 14:49:42 +08:00
|
|
|
case MONOCHROME_TRANSFER:
|
2014-09-29 17:26:54 +08:00
|
|
|
Mat gray = Mat(patch.size(),CV_8UC1);
|
|
|
|
Mat gray8 = Mat(patch.size(),CV_8UC3);
|
|
|
|
cvtColor(patch, gray, COLOR_BGR2GRAY );
|
|
|
|
vector <Mat> temp;
|
|
|
|
split(destination,temp);
|
|
|
|
gray.copyTo(temp[2]);
|
|
|
|
gray.copyTo(temp[1]);
|
|
|
|
gray.copyTo(temp[0]);
|
|
|
|
|
|
|
|
merge(temp,gray8);
|
|
|
|
|
|
|
|
computeGradientX(gray8,patchGradientX);
|
|
|
|
computeGradientY(gray8,patchGradientY);
|
|
|
|
|
2014-09-29 17:33:22 +08:00
|
|
|
array_product(patchGradientX, binaryMaskFloat, patchGradientX);
|
|
|
|
array_product(patchGradientY, binaryMaskFloat, patchGradientY);
|
2014-09-29 14:49:42 +08:00
|
|
|
break;
|
2014-09-26 16:26:10 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-09-29 17:26:54 +08:00
|
|
|
evaluate(destination,binaryMask,cloned);
|
2014-09-26 16:26:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void Cloning::local_color_change(Mat &I, Mat &mask, Mat &wmask, Mat &cloned, float red_mul=1.0,
|
|
|
|
float green_mul=1.0, float blue_mul=1.0)
|
|
|
|
{
|
2014-09-29 14:49:42 +08:00
|
|
|
compute_derivatives(I,mask,wmask);
|
2014-09-26 16:26:10 +08:00
|
|
|
|
2014-09-29 17:33:22 +08:00
|
|
|
array_product(patchGradientX,binaryMaskFloat, patchGradientX);
|
|
|
|
array_product(patchGradientY,binaryMaskFloat, patchGradientY);
|
|
|
|
scalar_product(patchGradientX,red_mul,green_mul,blue_mul);
|
|
|
|
scalar_product(patchGradientY,red_mul,green_mul,blue_mul);
|
2014-09-26 16:26:10 +08:00
|
|
|
|
|
|
|
evaluate(I,wmask,cloned);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Cloning::illum_change(Mat &I, Mat &mask, Mat &wmask, Mat &cloned, float alpha, float beta)
|
|
|
|
{
|
2014-09-29 14:49:42 +08:00
|
|
|
compute_derivatives(I,mask,wmask);
|
2014-09-26 16:26:10 +08:00
|
|
|
|
2014-09-29 17:33:22 +08:00
|
|
|
array_product(patchGradientX,binaryMaskFloat, patchGradientX);
|
|
|
|
array_product(patchGradientY,binaryMaskFloat, patchGradientY);
|
2014-09-26 16:26:10 +08:00
|
|
|
|
|
|
|
Mat mag = Mat(I.size(),CV_32FC3);
|
2014-09-29 17:33:22 +08:00
|
|
|
magnitude(patchGradientX,patchGradientY,mag);
|
2014-09-26 16:26:10 +08:00
|
|
|
|
|
|
|
Mat multX, multY, multx_temp, multy_temp;
|
|
|
|
|
2014-09-29 17:33:22 +08:00
|
|
|
multiply(patchGradientX,pow(alpha,beta),multX);
|
2014-09-26 16:26:10 +08:00
|
|
|
pow(mag,-1*beta, multx_temp);
|
2014-09-29 17:33:22 +08:00
|
|
|
multiply(multX,multx_temp, patchGradientX);
|
2014-09-30 14:15:02 +08:00
|
|
|
patchNaNs(patchGradientX);
|
2014-09-26 16:26:10 +08:00
|
|
|
|
2014-09-29 17:33:22 +08:00
|
|
|
multiply(patchGradientY,pow(alpha,beta),multY);
|
2014-09-26 16:26:10 +08:00
|
|
|
pow(mag,-1*beta, multy_temp);
|
2014-09-29 17:33:22 +08:00
|
|
|
multiply(multY,multy_temp,patchGradientY);
|
2014-09-30 14:15:02 +08:00
|
|
|
patchNaNs(patchGradientY);
|
2014-09-26 16:26:10 +08:00
|
|
|
|
2014-09-29 17:33:22 +08:00
|
|
|
Mat zeroMask = (patchGradientX != 0);
|
2014-09-26 16:26:10 +08:00
|
|
|
|
2014-09-29 17:33:22 +08:00
|
|
|
patchGradientX.copyTo(patchGradientX, zeroMask);
|
|
|
|
patchGradientY.copyTo(patchGradientY, zeroMask);
|
2014-09-26 16:26:10 +08:00
|
|
|
|
|
|
|
evaluate(I,wmask,cloned);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Cloning::texture_flatten(Mat &I, Mat &mask, Mat &wmask, double low_threshold,
|
|
|
|
double high_threshold, int kernel_size, Mat &cloned)
|
|
|
|
{
|
2014-09-29 14:49:42 +08:00
|
|
|
compute_derivatives(I,mask,wmask);
|
2014-09-26 16:26:10 +08:00
|
|
|
|
|
|
|
Mat out = Mat(mask.size(),CV_8UC1);
|
|
|
|
Canny(mask,out,low_threshold,high_threshold,kernel_size);
|
|
|
|
|
2014-09-29 17:26:54 +08:00
|
|
|
Mat zeros(patchGradientX.size(), CV_32FC3);
|
2014-09-26 16:26:10 +08:00
|
|
|
zeros.setTo(0);
|
|
|
|
Mat zerosMask = (out != 255);
|
2014-09-29 17:26:54 +08:00
|
|
|
zeros.copyTo(patchGradientX, zerosMask);
|
|
|
|
zeros.copyTo(patchGradientY, zerosMask);
|
2014-09-26 16:26:10 +08:00
|
|
|
|
2014-09-29 17:33:22 +08:00
|
|
|
array_product(patchGradientX,binaryMaskFloat, patchGradientX);
|
|
|
|
array_product(patchGradientY,binaryMaskFloat, patchGradientY);
|
2014-09-26 16:26:10 +08:00
|
|
|
|
|
|
|
evaluate(I,wmask,cloned);
|
|
|
|
}
|