diff --git a/samples/cpp/tutorial_code/core/AddingImages/AddingImages.cpp b/samples/cpp/tutorial_code/core/AddingImages/AddingImages.cpp index 491ae7ad9e..54134f4df6 100644 --- a/samples/cpp/tutorial_code/core/AddingImages/AddingImages.cpp +++ b/samples/cpp/tutorial_code/core/AddingImages/AddingImages.cpp @@ -9,6 +9,7 @@ #include using namespace cv; +using namespace std; /** * @function main @@ -21,10 +22,10 @@ int main( void ) Mat src1, src2, dst; /// Ask the user enter alpha - std::cout<<" Simple Linear Blender "<>input; + cout << " Simple Linear Blender " << endl; + cout << "-----------------------" << endl; + cout << "* Enter alpha [0-1]: "; + cin >> input; // We use the alpha provided by the user if it is between 0 and 1 if( alpha >= 0 && alpha <= 1 ) @@ -32,12 +33,12 @@ int main( void ) //![load] /// Read images ( both have to be of the same size and type ) - src1 = imread("../data/LinuxLogo.jpg"); - src2 = imread("../data/WindowsLogo.jpg"); + src1 = imread( "../data/LinuxLogo.jpg" ); + src2 = imread( "../data/WindowsLogo.jpg" ); //![load] - if( src1.empty() ) { std::cout<< "Error loading src1"<