From 958f410a5c55e124f9ae10a9724104eb03e0691b Mon Sep 17 00:00:00 2001 From: Vighnesh Birodkar Date: Mon, 15 Jun 2015 20:47:24 +0530 Subject: [PATCH] Changes example explanation text --- doc/examples/plot_seam_carving.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/doc/examples/plot_seam_carving.py b/doc/examples/plot_seam_carving.py index c5250d32..f1dcb948 100644 --- a/doc/examples/plot_seam_carving.py +++ b/doc/examples/plot_seam_carving.py @@ -4,9 +4,10 @@ Seam Carving ============ This example demonstrates how images can be resized using seam carving [1]_. -Resizing often distorts contents in the image. Seam carving tries to resize -images while trying to keep important content intact. In this example we are -using the Sobel filter to signify the importance of each pixel. +Resizing to a new aspect ratio distorts image contents. Seam carving attempts +to resize *without* distortion, by removing regions of an image which are less +important. In this example we are using the Sobel filter to signify the +importance of each pixel. .. [1] Shai Avidan and Ariel Shamir "Seam Carving for Content-Aware Image Resizing"