From 3b7ab0dd9e0296b7a457cdf6c4be701eec42ca81 Mon Sep 17 00:00:00 2001 From: Leon Tietz Date: Fri, 20 Jul 2012 17:19:12 -0500 Subject: [PATCH] corrected plot title --- doc/examples/plot_hough_transform.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/examples/plot_hough_transform.py b/doc/examples/plot_hough_transform.py index 51a90c64..5416d662 100644 --- a/doc/examples/plot_hough_transform.py +++ b/doc/examples/plot_hough_transform.py @@ -109,7 +109,7 @@ plt.title('Input image') plt.subplot(132) plt.imshow(edges, cmap=plt.cm.gray) -plt.title('Sobel edges') +plt.title('Canny edges') plt.subplot(133) plt.imshow(edges * 0)