Skip to content

Commit

Permalink
Update See Also to References
Browse files Browse the repository at this point in the history
"See Also" is apparently reserved by sphinx-numpydoc for pointers to
other code functions, rather than documentation.
  • Loading branch information
jni committed Mar 15, 2015
1 parent 2f62cf9 commit 0d3d5f1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions skimage/exposure/exposure.py
Expand Up @@ -491,6 +491,10 @@ def is_low_contrast(image, fraction_threshold=0.05, lower_percentile=1,
out : bool
True when the image is determined to be low contrast.
References
----------
.. [1] http://scikit-image.org/docs/dev/user_guide/data_types.html
Examples
--------
>>> image = np.linspace(0, 0.04, 100)
Expand All @@ -501,10 +505,6 @@ def is_low_contrast(image, fraction_threshold=0.05, lower_percentile=1,
True
>>> is_low_contrast(image, upper_percentile=100)
False
See Also
--------
.. [1] http://scikit-image.org/docs/dev/user_guide/data_types.html
"""
image = np.asanyarray(image)
if image.ndim == 3 and image.shape[2] in [3, 4]:
Expand Down

0 comments on commit 0d3d5f1

Please sign in to comment.