ImageDev

Visualization

This section introduces the ImageDev visualization tools.
This tool is available only in Python.

 imshow(image, display=True)

It displays a 2D or 3D image represented by an ImageDev image or a NumPy array.

This function uses ImageDev metadata in order to select the best possible rendering.
polystyrene = ioformat.read_image( imagedev_data.get_image_path("polystyrene.tif") )
polystyrene_sep = imagedev.read_vip_image( imagedev_data.get_image_path("polystyrene_sep.vip") )
imagedev.imshow( polystyrene, False )
imagedev.imshow( polystyrene_sep )