Change example scaling. Fix ref in doc.

This commit is contained in:
François Orieux
2013-12-05 11:56:59 +01:00
parent 9849d9d419
commit 0fdb5b2e0a
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -46,11 +46,11 @@ fig, ax = plt.subplots(nrows=1, ncols=2, figsize=(8, 5))
plt.gray()
ax[0].imshow(lena)
ax[0].imshow(lena, vmin=deconvolved.min(), vmax=deconvolved.max())
ax[0].axis('off')
ax[0].set_title('Data')
ax[1].imshow(deconvolved, vmax=lena.max())
ax[1].imshow(deconvolved)
ax[1].axis('off')
ax[1].set_title('Self tuned restoration')
+2 -2
View File
@@ -153,8 +153,8 @@ def unsupervised_wiener(image, psf, reg=None, user_params=None):
Return the deconvolution with a Wiener-Hunt approach, where the
hyperparameters are automatically estimated. The algorithm is a
stochastic iterative process (Gibbs sampler) described in [1]. See
also `wiener` function.
stochastic iterative process (Gibbs sampler) described in ref
belo]. See also `wiener` function.
Parameters
----------