removed cpp/tutorial_code/images/

pull/3217/head
Dmitriy Anisimov 10 years ago
parent 1007c06d44
commit ec03d6e6fc
  1. 4
      samples/cpp/tutorial_code/HighGUI/AddingImagesTrackbar.cpp
  2. 4
      samples/cpp/tutorial_code/ImgProc/AddingImages.cpp
  3. 2
      samples/cpp/tutorial_code/ImgProc/Pyramids.cpp
  4. 2
      samples/cpp/tutorial_code/ImgProc/Smoothing.cpp
  5. BIN
      samples/cpp/tutorial_code/images/HappyFish.jpg
  6. BIN
      samples/cpp/tutorial_code/images/Megamind.png
  7. BIN
      samples/cpp/tutorial_code/images/Megamind_alt.png
  8. BIN
      samples/cpp/tutorial_code/images/baboon.jpg
  9. BIN
      samples/cpp/tutorial_code/images/cat.jpg
  10. BIN
      samples/cpp/tutorial_code/images/hand_sample1.jpg
  11. BIN
      samples/cpp/tutorial_code/images/hand_sample2.jpg
  12. BIN
      samples/cpp/tutorial_code/images/hand_sample3.jpg
  13. BIN
      samples/cpp/tutorial_code/images/imageTextN.png
  14. BIN
      samples/cpp/tutorial_code/images/imageTextR.png
  15. BIN
      samples/cpp/tutorial_code/images/lena.png
  16. BIN
      samples/cpp/tutorial_code/images/opencv-logo.png
  17. BIN
      samples/cpp/tutorial_code/images/yellowball.jpg
  18. 0
      samples/data/LinuxLogo.jpg
  19. 0
      samples/data/WindowsLogo.jpg
  20. 0
      samples/data/chicky_512.png

@ -44,8 +44,8 @@ static void on_trackbar( int, void* )
int main( void )
{
/// 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() ) { printf("Error loading src1 \n"); return -1; }
if( src2.empty() ) { printf("Error loading src2 \n"); return -1; }

@ -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; }

@ -32,7 +32,7 @@ int main( void )
printf( " * [ESC] -> Close program \n \n" );
/// Test image - Make sure it s divisible by 2^{n}
src = imread( "../images/chicky_512.png" );
src = imread( "../data/chicky_512.png" );
if( src.empty() )
{ printf(" No data! -- Exiting the program \n");
return -1; }

@ -35,7 +35,7 @@ int main( void )
namedWindow( window_name, WINDOW_AUTOSIZE );
/// Load the source image
src = imread( "../images/lena.png", 1 );
src = imread( "../data/lena.jpg", 1 );
if( display_caption( "Original Image" ) != 0 ) { return 0; }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 230 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 282 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 176 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 60 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 463 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

Before

Width:  |  Height:  |  Size: 6.8 KiB

After

Width:  |  Height:  |  Size: 6.8 KiB

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Before

Width:  |  Height:  |  Size: 546 KiB

After

Width:  |  Height:  |  Size: 546 KiB

Loading…
Cancel
Save