Removing unused import and fixing indentation issue

This commit is contained in:
Ankit Agrawal
2013-07-03 23:32:49 +08:00
parent 3dcd24e6f3
commit 56e7ea23c5
2 changed files with 1 additions and 3 deletions
-1
View File
@@ -1,7 +1,6 @@
import numpy as np
from scipy.ndimage.filters import gaussian_filter
from ..color import rgb2gray
from ..util import img_as_float
from .util import _remove_border_keypoints
+1 -2
View File
@@ -3,8 +3,7 @@ from scipy.spatial.distance import hamming
def _remove_border_keypoints(image, keypoints, dist):
"""Removes keypoints that are within dist pixels from the image border.
"""
"""Removes keypoints that are within dist pixels from the image border."""
width = image.shape[0]
height = image.shape[1]