From c92358706bfab59632724e81c1bd511f35810bb7 Mon Sep 17 00:00:00 2001 From: Vighnesh Birodkar Date: Thu, 13 Mar 2014 03:22:30 +0530 Subject: [PATCH] typo --- skimage/feature/blob.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skimage/feature/blob.py b/skimage/feature/blob.py index acf1bd21..1b465c5f 100644 --- a/skimage/feature/blob.py +++ b/skimage/feature/blob.py @@ -98,7 +98,7 @@ def blob_dog(image, min_sigma=1, max_sigma=50, sigma_ratio=1.6, threshold=2.0, overlap=.5,): """Finds blobs in the given grayscale image. - Blobs are found using the Difference of Gaussian (DoG) method[1]_. + Blobs are found using the Difference of Gaussian (DoG) method [1]_. For each blob found, the method returns its coordinates and the standard deviation of the Gaussian kernel that detected the blob. @@ -204,7 +204,7 @@ def blob_log(image, min_sigma=1, max_sigma=50, num_sigma=10, threshold=.2, overlap=.5, log_scale=False): """Finds blobs in the given grayscale image. - Blobs are found using the Laplacian of Gaussian (LoG) method[1]_. + Blobs are found using the Laplacian of Gaussian (LoG) method [1]_. For each blob found, the method returns its coordinates and the standard deviation of the Gaussian kernel that detected the blob.