From 2e237887ba91be44e95d4b437324621e3f03df68 Mon Sep 17 00:00:00 2001 From: Vighnesh Birodkar Date: Sun, 29 Mar 2015 15:41:36 +0530 Subject: [PATCH] corrected title in example --- doc/examples/plot_seam_carving.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/examples/plot_seam_carving.py b/doc/examples/plot_seam_carving.py index 0583cd5d..c989f0c4 100644 --- a/doc/examples/plot_seam_carving.py +++ b/doc/examples/plot_seam_carving.py @@ -28,11 +28,11 @@ plt.title('Original Image') io.imshow(img, plugin='matplotlib') plt.figure() -plt.title('Resized Image Image') +plt.title('Resized Image') io.imshow(resized, plugin='matplotlib') plt.figure() -plt.title('Resized Image Image') +plt.title('Resized using Seam-Carving') io.imshow(out, plugin='matplotlib') io.show()