removed cpp/tutorial_code/images/

This commit is contained in:
Dmitriy Anisimov
2014-09-14 20:16:45 +04:00
parent 1007c06d44
commit ec03d6e6fc
20 changed files with 6 additions and 6 deletions

View File

@@ -32,8 +32,8 @@ int main( void )
{ alpha = input; }
/// Read image ( same size, same type )
src1 = imread("../images/LinuxLogo.jpg");
src2 = imread("../images/WindowsLogo.jpg");
src1 = imread("../data/LinuxLogo.jpg");
src2 = imread("../data/WindowsLogo.jpg");
if( src1.empty() ) { std::cout<< "Error loading src1"<<std::endl; return -1; }
if( src2.empty() ) { std::cout<< "Error loading src2"<<std::endl; return -1; }