Remove imshow from PIL plugin

Do not provide imshow, show in PIL plugin to prevent conflicts

Make the sphinx install quiet

Fix local linka

Fix literal blocks

Fix another local link

Fix richardson-lucy link

Assert world dominance
This commit is contained in:
Steven Silvester
2015-02-07 09:43:57 -06:00
parent be7154f23d
commit 5ccdd36bc3
5 changed files with 16 additions and 10 deletions
+2 -2
View File
@@ -16,5 +16,5 @@ coverage:
nosetests skimage --with-coverage --cover-package=skimage
html:
pip install sphinx
make -C doc html
pip install -q sphinx
export SPHINXOPTS=-W; make -C doc html
+3 -3
View File
@@ -1,5 +1,5 @@
"""The local histogram is computed using a sliding window similar to the method
described in [1]_.
described in [1].
Input image can be 8-bit or 16-bit, for 16-bit input images, the number of
histogram bins is determined from the maximum value present in the image.
@@ -749,7 +749,7 @@ def tophat(image, selem, out=None, mask=None, shift_x=False, shift_y=False):
def noise_filter(image, selem, out=None, mask=None, shift_x=False,
shift_y=False):
"""Noise feature as described in [1]_.
"""Noise feature as described in [1].
Parameters
----------
@@ -800,7 +800,7 @@ def noise_filter(image, selem, out=None, mask=None, shift_x=False,
def entropy(image, selem, out=None, mask=None, shift_x=False, shift_y=False):
"""Local entropy [1]_.
"""Local entropy [1].
The entropy is computed using base 2 logarithm i.e. the filter returns the
minimum number of bits needed to encode the local greylevel distribution.
+1 -1
View File
@@ -1,3 +1,3 @@
[pil]
description = Image reading via the Python Imaging Library
provides = imread, imsave, imshow, _app_show
provides = imread, imsave
+1 -1
View File
@@ -363,7 +363,7 @@ def richardson_lucy(image, psf, iterations=50, clip=True):
References
----------
.. [2] http://en.wikipedia.org/wiki/Richardson%E2%80%93Lucy_deconvolution
.. [1] http://en.wikipedia.org/wiki/Richardson%E2%80%93Lucy_deconvolution
"""
image = image.astype(np.float)
psf = psf.astype(np.float)
+9 -3
View File
@@ -332,7 +332,9 @@ class ProjectiveTransform(GeometricTransform):
class AffineTransform(ProjectiveTransform):
"""2D affine transformation of the form::
"""2D affine transformation of the form:
..:math:
X = a0*x + a1*y + a2 =
= sx*x*cos(rotation) - sy*y*sin(rotation + shear) + a2
@@ -551,7 +553,9 @@ class PiecewiseAffineTransform(GeometricTransform):
class SimilarityTransform(ProjectiveTransform):
"""2D similarity transformation of the form::
"""2D similarity transformation of the form:
..:math:
X = a0 * x - b0 * y + a1 =
= m * x * cos(rotation) - m * y * sin(rotation) + a1
@@ -715,7 +719,9 @@ class SimilarityTransform(ProjectiveTransform):
class PolynomialTransform(GeometricTransform):
"""2D transformation of the form::
"""2D transformation of the form:
..:math:
X = sum[j=0:order]( sum[i=0:j]( a_ji * x**(j - i) * y**i ))
Y = sum[j=0:order]( sum[i=0:j]( b_ji * x**(j - i) * y**i ))