From a66f2a0b373881231f2d76b1f446362742365470 Mon Sep 17 00:00:00 2001 From: Vighnesh Birodkar Date: Wed, 9 Apr 2014 20:30:33 +0530 Subject: [PATCH] extra line and spelling mistake --- skimage/feature/blob.py | 2 +- skimage/feature/corner.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/skimage/feature/blob.py b/skimage/feature/blob.py index 9c35d2a5..343863a9 100644 --- a/skimage/feature/blob.py +++ b/skimage/feature/blob.py @@ -388,7 +388,7 @@ def blob_doh(image, min_sigma=1, max_sigma=30, num_sigma=10, threshold=0.01, """ if image.ndim != 2: - raise ValueError("'image' must be a grayscale ") + raise ValueError("'image' must be grayscale ") image = img_as_float(image) image = integral_image(image) diff --git a/skimage/feature/corner.py b/skimage/feature/corner.py index a7b7c5b7..1889d799 100644 --- a/skimage/feature/corner.py +++ b/skimage/feature/corner.py @@ -190,7 +190,6 @@ def hessian_matrix_det(image, sigma, integral=True): not computed. If `True` the integral image is computed for `image` and used for finding the Hessian Determinant. - Returns ------- out : array