vis4d.vis.image.viewer.matplotlib_viewer¶ Matplotlib based image viewer. Classes MatplotlibImageViewer() A image viewer using matplotlib.pyplot. class MatplotlibImageViewer[source]¶ A image viewer using matplotlib.pyplot. save_images(images, file_paths)[source]¶ Saves a list of images. Parameters: images (list[NDArrayUI8]) – Images to save. file_paths (list[str]) – File paths to save the images to. Return type: None show_images(images, blocking=True)[source]¶ Shows a list of images. Parameters: images (list[NDArrayUI8]) – Images to display. blocking (bool) – If the viewer should be blocking and wait for human input after each image. Return type: None