mirror of
https://github.com/wassname/scikit-image.git
synced 2026-08-08 11:26:12 +08:00
Add some more references to interest point functions
This commit is contained in:
@@ -69,6 +69,11 @@ def harris(image, method='k', k=0.05, eps=1e-6, sigma=1):
|
||||
response : ndarray
|
||||
Harris response image.
|
||||
|
||||
References
|
||||
----------
|
||||
..[1] http://kiwi.cs.dal.ca/~dparks/CornerDetection/harris.htm
|
||||
..[2] http://en.wikipedia.org/wiki/Corner_detection
|
||||
|
||||
Examples
|
||||
-------
|
||||
>>> from skimage.feature import harris, peak_local_max
|
||||
@@ -127,6 +132,11 @@ def shi_tomasi(image, sigma=1):
|
||||
response : ndarray
|
||||
Shi-Tomasi response image.
|
||||
|
||||
References
|
||||
----------
|
||||
..[1] http://kiwi.cs.dal.ca/~dparks/CornerDetection/harris.htm
|
||||
..[2] http://en.wikipedia.org/wiki/Corner_detection
|
||||
|
||||
Examples
|
||||
-------
|
||||
>>> from skimage.feature import shi_tomasi, peak_local_max
|
||||
|
||||
@@ -30,6 +30,7 @@ def moravec(image, int window_size=1):
|
||||
References
|
||||
----------
|
||||
..[1] http://kiwi.cs.dal.ca/~dparks/CornerDetection/moravec.htm
|
||||
..[2] http://en.wikipedia.org/wiki/Corner_detection
|
||||
|
||||
Examples
|
||||
-------
|
||||
|
||||
Reference in New Issue
Block a user