Minor doc changes

This commit is contained in:
Ankit Agrawal
2013-10-01 09:38:02 +05:30
committed by Johannes Schönberger
parent 6e566e831f
commit ed738b3017
2 changed files with 4 additions and 2 deletions
+3 -1
View File
@@ -126,7 +126,9 @@ def keypoints_censure(image, min_scale=1, max_scale=7, mode='DoB',
max_scale : int
Maximum scale to extract keypoints from. The keypoints will be
extracted from all the scales except the first and the last i.e.
from the scales in the range [min_scale + 1, max_scale - 1].
from the scales in the range [min_scale + 1, max_scale - 1]. The filter
sizes for different scales is such that the two adjacent scales
comprise of an octave.
mode : {'DoB', 'Octagon', 'STAR'}
Type of bi-level filter used to get the scales of the input image.
Possible values are 'DoB', 'Octagon' and 'STAR'. The three modes
+1 -1
View File
@@ -49,7 +49,7 @@ def keypoints_orb(image, n_keypoints=500, fast_n=9, fast_threshold=0.08,
values of k result in detection of sharp corners.
downscale : float
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.
that we have more dense scales that enable robust scale invariance.
n_scales : int
Number of scales from the bottom of the image pyramid to extract
the features from.