.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "auto_examples/filters/plot_unsharp_mask.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note :ref:`Go to the end ` to download the full example code or to run this example in your browser via Binder .. rst-class:: sphx-glr-example-title .. _sphx_glr_auto_examples_filters_plot_unsharp_mask.py: =============== Unsharp masking =============== Unsharp masking is a linear image processing technique which sharpens the image. The sharp details are identified as a difference between the original image and its blurred version. These details are then scaled, and added back to the original image: enhanced image = original + amount * (original - blurred) The blurring step could use any image filter method, e.g. median filter, but traditionally a gaussian filter is used. The radius parameter in the unsharp masking filter refers to the sigma parameter of the gaussian filter. This example shows the effect of different radius and amount parameters. .. GENERATED FROM PYTHON SOURCE LINES 20-46 .. image-sg:: /auto_examples/filters/images/sphx_glr_plot_unsharp_mask_001.png :alt: Original image, Enhanced image, radius=1, amount=1.0, Enhanced image, radius=5, amount=2.0, Enhanced image, radius=20, amount=1.0 :srcset: /auto_examples/filters/images/sphx_glr_plot_unsharp_mask_001.png :class: sphx-glr-single-img .. code-block:: Python from skimage import data from skimage.filters import unsharp_mask import matplotlib.pyplot as plt image = data.moon() result_1 = unsharp_mask(image, radius=1, amount=1) result_2 = unsharp_mask(image, radius=5, amount=2) result_3 = unsharp_mask(image, radius=20, amount=1) fig, axes = plt.subplots(nrows=2, ncols=2, sharex=True, sharey=True, figsize=(10, 10)) ax = axes.ravel() ax[0].imshow(image, cmap=plt.cm.gray) ax[0].set_title('Original image') ax[1].imshow(result_1, cmap=plt.cm.gray) ax[1].set_title('Enhanced image, radius=1, amount=1.0') ax[2].imshow(result_2, cmap=plt.cm.gray) ax[2].set_title('Enhanced image, radius=5, amount=2.0') ax[3].imshow(result_3, cmap=plt.cm.gray) ax[3].set_title('Enhanced image, radius=20, amount=1.0') for a in ax: a.axis('off') fig.tight_layout() plt.show() .. rst-class:: sphx-glr-timing **Total running time of the script:** (0 minutes 1.404 seconds) .. _sphx_glr_download_auto_examples_filters_plot_unsharp_mask.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: binder-badge .. image:: images/binder_badge_logo.svg :target: https://mybinder.org/v2/gh/scikit-image/scikit-image/v0.23.2?filepath=notebooks/auto_examples/filters/plot_unsharp_mask.ipynb :alt: Launch binder :width: 150 px .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: plot_unsharp_mask.ipynb ` .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: plot_unsharp_mask.py ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_