corner_moravec
-
skimage.feature.corner_moravec()
-
Compute Moravec corner measure response image.
This is one of the simplest corner detectors and is comparatively fast but has several limitations (e.g. not rotation invariant).
Parameters: image : ndarray
Input image.
window_size : int, optional (default 1)
Window size.
Returns: response : ndarray
Moravec response image.
References
[R136] http://kiwi.cs.dal.ca/~dparks/CornerDetection/moravec.htm [R137] http://en.wikipedia.org/wiki/Corner_detection Examples
12345678910111213141516171819>>>
from
skimage.feature
import
corner_moravec
>>> square
=
np.zeros([
7
,
7
])
>>> square[
3
,
3
]
=
1
>>> square.astype(
int
)
array([[
0
,
0
,
0
,
0
,
0
,
0
,
0
],
[
0
,
0
,
0
,
0
,
0
,
0
,
0
],
[
0
,
0
,
0
,
0
,
0
,
0
,
0
],
[
0
,
0
,
0
,
1
,
0
,
0
,
0
],
[
0
,
0
,
0
,
0
,
0
,
0
,
0
],
[
0
,
0
,
0
,
0
,
0
,
0
,
0
],
[
0
,
0
,
0
,
0
,
0
,
0
,
0
]])
>>> corner_moravec(square).astype(
int
)
array([[
0
,
0
,
0
,
0
,
0
,
0
,
0
],
[
0
,
0
,
0
,
0
,
0
,
0
,
0
],
[
0
,
0
,
1
,
1
,
1
,
0
,
0
],
[
0
,
0
,
1
,
2
,
1
,
0
,
0
],
[
0
,
0
,
1
,
1
,
1
,
0
,
0
],
[
0
,
0
,
0
,
0
,
0
,
0
,
0
],
[
0
,
0
,
0
,
0
,
0
,
0
,
0
]])
Please login to continue.