Minor doc change

This commit is contained in:
Ankit Agrawal
2013-11-29 20:49:15 +01:00
committed by Johannes Schönberger
parent 73afae9d72
commit 6e566e831f
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -48,7 +48,8 @@ def keypoints_orb(image, n_keypoints=500, fast_n=9, fast_threshold=0.08,
separate corners from edges, typically in range ``[0, 0.2]``. Small
values of k result in detection of sharp corners.
downscale : float
Downscale factor for the image pyramid.
Downscale factor for the image pyramid. Default value 1.2 is chosen so
that we have more scales per octave i.e. log1.2(2) in this case.
n_scales : int
Number of scales from the bottom of the image pyramid to extract
the features from.
+1 -1
View File
@@ -1,6 +1,6 @@
import numpy as np
from ..util import img_as_float
from skimage.util import img_as_float
def _prepare_grayscale_input_2D(image):