
.. DO NOT EDIT.
.. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY.
.. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE:
.. "auto_examples/segmentation/plot_rag_draw.py"
.. LINE NUMBERS ARE GIVEN BELOW.

.. only:: html

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

        :ref:`Go to the end <sphx_glr_download_auto_examples_segmentation_plot_rag_draw.py>`
        to download the full example code.

.. rst-class:: sphx-glr-example-title

.. _sphx_glr_auto_examples_segmentation_plot_rag_draw.py:


======================================
Drawing Region Adjacency Graphs (RAGs)
======================================

This example constructs a Region Adjacency Graph (RAG) and draws it with
the `rag_draw` method.

.. GENERATED FROM PYTHON SOURCE LINES 9-35



.. image-sg:: /auto_examples/segmentation/images/sphx_glr_plot_rag_draw_001.png
   :alt: RAG drawn with default settings, RAG drawn with grayscale image and viridis colormap
   :srcset: /auto_examples/segmentation/images/sphx_glr_plot_rag_draw_001.png
   :class: sphx-glr-single-img





.. code-block:: Python


    from skimage import data, segmentation
    from skimage import graph
    from matplotlib import pyplot as plt


    img = data.coffee()
    labels = segmentation.slic(img, compactness=30, n_segments=400, start_label=1)
    g = graph.rag_mean_color(img, labels)

    fig, ax = plt.subplots(nrows=2, sharex=True, sharey=True, figsize=(6, 8))

    ax[0].set_title('RAG drawn with default settings')
    lc = graph.show_rag(labels, g, img, ax=ax[0])
    # specify the fraction of the plot area that will be used to draw the colorbar
    fig.colorbar(lc, fraction=0.03, ax=ax[0])

    ax[1].set_title('RAG drawn with grayscale image and viridis colormap')
    lc = graph.show_rag(labels, g, img, img_cmap='gray', edge_cmap='viridis', ax=ax[1])
    fig.colorbar(lc, fraction=0.03, ax=ax[1])

    for a in ax:
        a.axis('off')

    plt.tight_layout()
    plt.show()


.. rst-class:: sphx-glr-timing

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


.. _sphx_glr_download_auto_examples_segmentation_plot_rag_draw.py:

.. only:: html

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

    .. container:: sphx-glr-download sphx-glr-download-jupyter

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

    .. container:: sphx-glr-download sphx-glr-download-python

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

    .. container:: sphx-glr-download sphx-glr-download-zip

      :download:`Download zipped: plot_rag_draw.zip <plot_rag_draw.zip>`


.. only:: html

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

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