From 410280f4a9c6cde82f515d9d54c7bab157a0c674 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Sch=C3=B6nberger?= Date: Tue, 11 Sep 2012 08:52:10 +0200 Subject: [PATCH] Add some more references to interest point functions --- skimage/feature/interest.py | 10 ++++++++++ skimage/feature/interest_cy.pyx | 1 + 2 files changed, 11 insertions(+) diff --git a/skimage/feature/interest.py b/skimage/feature/interest.py index 1e2a86af..ef47e7cf 100644 --- a/skimage/feature/interest.py +++ b/skimage/feature/interest.py @@ -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 diff --git a/skimage/feature/interest_cy.pyx b/skimage/feature/interest_cy.pyx index b14e3f6a..ae49faf1 100644 --- a/skimage/feature/interest_cy.pyx +++ b/skimage/feature/interest_cy.pyx @@ -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 -------