image_list = [TensorDicom3D.create(fn) for fn in Path('../data/series/').ls()]
mask_list = [TensorMask3D.create(fn) for fn in Path('../data/masks/').ls()]
plot = BasicViewer(image_list[0], y=mask_list[0], prediction='Covid', figsize = (5,5))
plot.show()
plot = DicomExplorer(image_list[4], y=mask_list[4], figsize = (5,5))
plot.show()
plot = ListViewer(image_list, y=['Covid', 'Covid', 'Covid', 'Covid', 'Covid'], prediction=['Covid', 'Covid', 'Covid', 'No Covid', 'No Covid'])
plot.show()