CENSURE
-
class skimage.feature.CENSURE(min_scale=1, max_scale=7, mode='DoB', non_max_threshold=0.15, line_threshold=10)
[source] -
Bases:
skimage.feature.util.FeatureDetector
CENSURE keypoint detector.
-
min_scale : int, optional
- Minimum scale to extract keypoints from.
-
max_scale : int, optional
- 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]. The filter sizes for different scales is such that the two adjacent scales comprise of an octave.
-
mode : {‘DoB’, ‘Octagon’, ‘STAR’}, optional
- Type of bi-level filter used to get the scales of the input image. Possible values are ‘DoB’, ‘Octagon’ and ‘STAR’. The three modes represent the shape of the bi-level filters i.e. box(square), octagon and star respectively. For instance, a bi-level octagon filter consists of a smaller inner octagon and a larger outer octagon with the filter weights being uniformly negative in both the inner octagon while uniformly positive in the difference region. Use STAR and Octagon for better features and DoB for better performance.
-
non_max_threshold : float, optional
- Threshold value used to suppress maximas and minimas with a weak magnitude response obtained after Non-Maximal Suppression.
-
line_threshold : float, optional
- Threshold for rejecting interest points which have ratio of principal curvatures greater than this value.
References
[R158] Motilal Agrawal, Kurt Konolige and Morten Rufus Blas “CENSURE: Center Surround Extremas for Realtime Feature Detection and Matching”, http://link.springer.com/content/pdf/10.1007%2F978-3-540-88693-8_8.pdf [R159] Adam Schmidt, Marek Kraft, Michal Fularz and Zuzanna Domagala “Comparative Assessment of Point Feature Detectors and Descriptors in the Context of Robot Navigation” http://www.jamris.org/01_2013/saveas.php?QUEST=JAMRIS_No01_2013_P_11-20.pdf Examples
1234567891011121314151617181920212223242526272829303132>>>
from
skimage.data
import
astronaut
>>>
from
skimage.color
import
rgb2gray
>>>
from
skimage.feature
import
CENSURE
>>> img
=
rgb2gray(astronaut()[
100
:
300
,
100
:
300
])
>>> censure
=
CENSURE()
>>> censure.detect(img)
>>> censure.keypoints
array([[
4
,
148
],
[
12
,
73
],
[
21
,
176
],
[
91
,
22
],
[
93
,
56
],
[
94
,
22
],
[
95
,
54
],
[
100
,
51
],
[
103
,
51
],
[
106
,
67
],
[
108
,
15
],
[
117
,
20
],
[
122
,
60
],
[
125
,
37
],
[
129
,
37
],
[
133
,
76
],
[
145
,
44
],
[
146
,
94
],
[
150
,
114
],
[
153
,
33
],
[
154
,
156
],
[
155
,
151
],
[
184
,
63
]])
>>> censure.scales
array([
2
,
6
,
6
,
2
,
4
,
3
,
2
,
3
,
2
,
6
,
3
,
2
,
2
,
3
,
2
,
2
,
2
,
3
,
2
,
2
,
4
,
2
,
2
])
Attributes
keypoints ((N, 2) array) Keypoint coordinates as (row, col)
.scales ((N, ) array) Corresponding scales. -
__init__(min_scale=1, max_scale=7, mode='DoB', non_max_threshold=0.15, line_threshold=10)
[source]
-
detect(image)
[source] -
Detect CENSURE keypoints along with the corresponding scale.
Parameters: image : 2D ndarray
Input image.
-
Please login to continue.