From 580f5d2dfddbc3ee132c299ad489ba4ca6d91e05 Mon Sep 17 00:00:00 2001 From: Vighnesh Birodkar Date: Mon, 28 Apr 2014 00:33:19 +0530 Subject: [PATCH] Corrected comment in example. --- doc/examples/plot_blob.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/examples/plot_blob.py b/doc/examples/plot_blob.py index 53ac95d4..358b57c4 100644 --- a/doc/examples/plot_blob.py +++ b/doc/examples/plot_blob.py @@ -45,7 +45,7 @@ image = data.hubble_deep_field()[0:500, 0:500] image_gray = rgb2gray(image) blobs_log = blob_log(image_gray, max_sigma=30, num_sigma=10, threshold=.1) -# Compute areas in the 2nd column. +# Compute radii in the 3rd column. blobs_log[:, 2] = blobs_log[:, 2] * sqrt(2) blobs_dog = blob_dog(image_gray, max_sigma=30, threshold=.1)