From a2438b6338f0783590773b657408de7a097a2144 Mon Sep 17 00:00:00 2001 From: Vighnesh Birodkar Date: Mon, 10 Mar 2014 23:56:30 +0530 Subject: [PATCH] comments --- skimage/feature/blob.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/skimage/feature/blob.py b/skimage/feature/blob.py index de49dab9..d577d878 100644 --- a/skimage/feature/blob.py +++ b/skimage/feature/blob.py @@ -282,6 +282,8 @@ def blob_log(image, min_sigma=1, max_sigma=50, num_sigma=10, threshold=.2, else: sigma_list = np.linspace(min_sigma, max_sigma, num_sigma) + #computing gaussian laplace + #s**2 provides scale invariance gl_images = [-gaussian_laplace(image, s) * s ** 2 for s in sigma_list] image_cube = np.dstack(gl_images)