Fix doc string for multiple return values

This commit is contained in:
Johannes Schönberger
2012-09-16 20:10:00 +02:00
parent f95e936696
commit 5b72c5d52c
+14 -6
View File
@@ -16,8 +16,10 @@ def _compute_derivatives(image):
Returns
-------
imx, imy : arrays
Derivatives in x and y direction.
imx : ndarray
Derivative in x-direction.
imy : ndarray
Derivative in y-direction.
"""
@@ -40,8 +42,12 @@ def _compute_auto_correlation(image, sigma):
Returns
-------
Axx, Axy, Ayy : arrays
Elements of the auto-correlation matrix for each pixel in input image.
Axx : ndarray
Element of the auto-correlation matrix for each pixel in input image.
Axy : ndarray
Element of the auto-correlation matrix for each pixel in input image.
Ayy : ndarray
Element of the auto-correlation matrix for each pixel in input image.
"""
@@ -259,8 +265,10 @@ def corner_foerstner(image, sigma=1):
Returns
-------
w, q : ndarray
Foerstner response images.
w : ndarray
Error ellipse sizes.
q : ndarray
Roundness of error ellipse.
References
----------