Add some more references to interest point functions

This commit is contained in:
Johannes Schönberger
2012-12-09 17:34:12 +01:00
parent 3508aa9032
commit 410280f4a9
2 changed files with 11 additions and 0 deletions
+10
View File
@@ -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
+1
View File
@@ -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
-------