
Displaying
==========

``display``
-----------

**display** ()


:Operates on: ``Image`` [OneBit|GreyScale|Grey16|RGB|Float|Complex]
:Category: Displaying
:Defined in: plugin.py
:Author: Michael Droettboom and Karl MacMillan


Displays the image in its own window.  (See `Using the Gamera GUI`__).  If the GUI
process is not running, this method has no effect.

.. __: gui.html

.. image:: images/display.png


``display_ccs``
---------------

**display_ccs** ()


:Operates on: ``Image`` [OneBit]
:Category: Displaying
:Defined in: plugin.py
:Author: Michael Droettboom and Karl MacMillan


Displays the image in its own window.  (See `Using the Gamera GUI`__).
Each connected component is assigned to one of eight colors.  This
display can be used to see how connected component analysis performs
on a given image.  Uses color_ccs_ under the hood.

.. __: gui.html
.. _color_ccs: gui_support.html#color-ccs

.. note: Connected component analysis must already be performed on the image
   (using cc_analysis_, for example) in order for this to work.

.. _cc_analysis: segmentation.html#cc-analysis

.. image:: images/display_ccs.png


``display_false_color``
-----------------------

**display_false_color** ()


:Operates on: ``Image`` [GreyScale|Float]
:Category: Displaying
:Defined in: plugin.py
:Author: Michael Droettboom and Karl MacMillan


Displays the image using false coloring.  (See false_color_).

.. _false_color: color.html#false-color

.. image:: images/display_false_color.png


