Image.disp#
- Image.disp(title: str | bool | None = None, **kwargs: Any) Any[source]#
Display image
- Parameters:
title (bool) – named of window, defaults to image
namekwargs – options, see
idisp
Display an image using either Matplotlib (default) or OpenCV. There are many display options. The Matplotlib display is interactive and supports zooming, panning, and pixel value inspection.
Example:
>>> from machinevisiontoolbox import Image >>> img = Image.Read('flowers1.png') >>> img.disp(); <matplotlib.image.AxesImage object at 0x7f076e1e10d0>
(
Source code,png,hires.png,pdf)
- Seealso: