Plot Image¶
Open the image in a window or plot in a Jupyter notebook using matplotlib.
plot_image(img, plot=True)
returns none
- Parameters:
- img - image object
- Context:
- Often used to debug new image processing workflows
- Used to view images in Jupyter notebooks (or in a window)
from littlecv import littlecv as lcv
lcv.plot_image(img)
Source Code: Here