Corrected comment in example.

This commit is contained in:
Vighnesh Birodkar
2014-04-28 00:33:19 +05:30
parent 5b459a8e4b
commit 580f5d2dfd
+1 -1
View File
@@ -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)