Lines Matching full:destination
17 * The program takes as input a source and a destination image (for 1-3 methods)
62 Mat destination = imread(original_path2, IMREAD_COLOR);
70 if(destination.empty())
72 cout << "Could not load destination image " << original_path2 << endl;
86 seamlessClone(source, destination, mask, p, result, 1);
99 Mat destination = imread(original_path2, IMREAD_COLOR);
107 if(destination.empty())
109 cout << "Could not load destination image " << original_path2 << endl;
120 p.x = destination.size().width/2;
121 p.y = destination.size().height/2;
123 seamlessClone(source, destination, mask, p, result, 2);
136 Mat destination = imread(original_path2, IMREAD_COLOR);
144 if(destination.empty())
146 cout << "Could not load destination image " << original_path2 << endl;
157 p.x = destination.size().width/2;
158 p.y = destination.size().height/2;
160 seamlessClone(source, destination, mask, p, result, 3);