mirror of
https://github.com/wassname/scikit-image.git
synced 2026-07-13 17:45:20 +08:00
Minor doc changes
This commit is contained in:
committed by
Johannes Schönberger
parent
6e566e831f
commit
ed738b3017
@@ -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
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user