.. note::
    :class: sphx-glr-download-link-note

    Click :ref:`here <sphx_glr_download_auto_examples_color_exposure_plot_rgb_to_gray.py>` to download the full example code
.. rst-class:: sphx-glr-example-title

.. _sphx_glr_auto_examples_color_exposure_plot_rgb_to_gray.py:


================
RGB to grayscale
================

This example converts an image with RGB channels into an image with a single
grayscale channel.

The value of each grayscale pixel is calculated as the weighted sum of the
corresponding red, green and blue pixels as::

        Y = 0.2125 R + 0.7154 G + 0.0721 B

These weights are used by CRT phosphors as they better represent human
perception of red, green and blue than equal weights. [1]_

References
----------
.. [1] http://www.poynton.com/PDFs/ColorFAQ.pdf





.. code-block:: pytb

    Traceback (most recent call last):
      File "/build/skimage-Lp2Zl4/skimage-0.16.2/doc/examples/color_exposure/plot_rgb_to_gray.py", line 1
        ================
        ^
    SyntaxError: invalid syntax





.. code-block:: python

    ================
    RGB to grayscale
    ================

    This example converts an image with RGB channels into an image with a single
    grayscale channel.

    The value of each grayscale pixel is calculated as the weighted sum of the
    corresponding red, green and blue pixels as::

            Y = 0.2125 R + 0.7154 G + 0.0721 B

    These weights are used by CRT phosphors as they better represent human
    perception of red, green and blue than equal weights. [1]_

    References
    ----------
    .. [1] http://www.poynton.com/PDFs/ColorFAQ.pdf

    """
    import numpy as np
    import matplotlib.pyplot as plt

    from skimage import data
    from skimage.color import rgb2gray

    original = data.astronaut()
    grayscale = rgb2gray(original)

    fig, axes = plt.subplots(1, 2, figsize=(8, 4))
    ax = axes.ravel()

    ax[0].imshow(original)
    ax[0].set_title("Original")
    ax[1].imshow(grayscale, cmap=plt.cm.gray)
    ax[1].set_title("Grayscale")

    fig.tight_layout()
    plt.show()

**Total running time of the script:** ( 0 minutes  0.000 seconds)


.. _sphx_glr_download_auto_examples_color_exposure_plot_rgb_to_gray.py:


.. only :: html

 .. container:: sphx-glr-footer
    :class: sphx-glr-footer-example



  .. container:: sphx-glr-download

     :download:`Download Python source code: plot_rgb_to_gray.py <plot_rgb_to_gray.py>`



  .. container:: sphx-glr-download

     :download:`Download Jupyter notebook: plot_rgb_to_gray.ipynb <plot_rgb_to_gray.ipynb>`


.. only:: html

 .. rst-class:: sphx-glr-signature

    `Gallery generated by Sphinx-Gallery <https://sphinx-gallery.readthedocs.io>`_
