mirror of
https://github.com/wassname/scikit-image.git
synced 2026-07-11 22:17:34 +08:00
Fix return types in doc string of interest point detectors
This commit is contained in:
@@ -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
|
||||
-------
|
||||
|
||||
@@ -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
|
||||
-------
|
||||
|
||||
Reference in New Issue
Block a user