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

.. only:: html

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

        Click :ref:`here <sphx_glr_download_auto_examples_edges_plot_shapes.py>`
        to download the full example code

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

.. _sphx_glr_auto_examples_edges_plot_shapes.py:


======
Shapes
======

This example shows how to draw several different shapes:

- line
- Bezier curve
- polygon
- disk
- ellipse

Anti-aliased drawing for:

- line
- circle

.. GENERATED FROM PYTHON SOURCE LINES 20-98



.. image-sg:: /auto_examples/edges/images/sphx_glr_plot_shapes_001.png
   :alt: No anti-aliasing, Anti-aliasing
   :srcset: /auto_examples/edges/images/sphx_glr_plot_shapes_001.png
   :class: sphx-glr-single-img


.. rst-class:: sphx-glr-script-out

 Out:

 .. code-block:: none

    Clipping input data to the valid range for imshow with RGB data ([0..1] for floats or [0..255] for integers).






|

.. code-block:: default

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

    from skimage.draw import (line, polygon, disk,
                              circle_perimeter,
                              ellipse, ellipse_perimeter,
                              bezier_curve)


    fig, (ax1, ax2) = plt.subplots(ncols=2, nrows=1, figsize=(10, 6))


    img = np.zeros((500, 500, 3), dtype=np.double)

    # draw line
    rr, cc = line(120, 123, 20, 400)
    img[rr, cc, 0] = 255

    # fill polygon
    poly = np.array((
        (300, 300),
        (480, 320),
        (380, 430),
        (220, 590),
        (300, 300),
    ))
    rr, cc = polygon(poly[:, 0], poly[:, 1], img.shape)
    img[rr, cc, 1] = 1

    # fill circle
    rr, cc = disk((200, 200), 100, shape=img.shape)
    img[rr, cc, :] = (1, 1, 0)

    # fill ellipse
    rr, cc = ellipse(300, 300, 100, 200, img.shape)
    img[rr, cc, 2] = 1

    # circle
    rr, cc = circle_perimeter(120, 400, 15)
    img[rr, cc, :] = (1, 0, 0)

    # Bezier curve
    rr, cc = bezier_curve(70, 100, 10, 10, 150, 100, 1)
    img[rr, cc, :] = (1, 0, 0)

    # ellipses
    rr, cc = ellipse_perimeter(120, 400, 60, 20, orientation=math.pi / 4.)
    img[rr, cc, :] = (1, 0, 1)
    rr, cc = ellipse_perimeter(120, 400, 60, 20, orientation=-math.pi / 4.)
    img[rr, cc, :] = (0, 0, 1)
    rr, cc = ellipse_perimeter(120, 400, 60, 20, orientation=math.pi / 2.)
    img[rr, cc, :] = (1, 1, 1)

    ax1.imshow(img)
    ax1.set_title('No anti-aliasing')
    ax1.axis('off')


    from skimage.draw import line_aa, circle_perimeter_aa


    img = np.zeros((100, 100), dtype=np.double)

    # anti-aliased line
    rr, cc, val = line_aa(12, 12, 20, 50)
    img[rr, cc] = val

    # anti-aliased circle
    rr, cc, val = circle_perimeter_aa(60, 40, 30)
    img[rr, cc] = val


    ax2.imshow(img, cmap=plt.cm.gray)
    ax2.set_title('Anti-aliasing')
    ax2.axis('off')

    plt.show()


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

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


.. _sphx_glr_download_auto_examples_edges_plot_shapes.py:


.. only :: html

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



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

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



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

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


.. only:: html

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

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