Fix return types in doc string of interest point detectors

This commit is contained in:
Johannes Schönberger
2012-09-10 21:18:30 +02:00
parent 2edb33f950
commit ecd2687226
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -8,7 +8,7 @@ def harris(image, eps=1e-6, gaussian_deviation=1):
Parameters
----------
image : ndarray of floats
image : ndarray
Input image.
eps : float, optional
Normalisation factor.
@@ -17,8 +17,8 @@ def harris(image, eps=1e-6, gaussian_deviation=1):
Returns
-------
coordinates : (N, 2) array
`(row, column)` coordinates of interest points.
response : ndarray
Moravec response image.
Examples
-------
+2 -2
View File
@@ -24,8 +24,8 @@ def moravec(image, int block_size=1):
Returns
-------
coordinates : (N, 2) array
`(row, column)` coordinates of interest points.
response : ndarray
Moravec response image.
Examples
-------