Napari is both a python library and a GUI software. Napari is used by wetlab scientists and bioinformatician to analyze fluorescent microscopy data. Napari can read ome.tiff files. https://github.com/AllenCellModeling/napari-aicsimageio
pip3 install napari[all]pcdl_make_ome_tiff('output/')import pcdl
mcdsts = pcdl.TimeSeries('output/')
mcdsts.make_ome_tiff()import napari
viewer = napari.Viewer()
viewer.open('output/timeseries_ID.ome.tiff')napari output/timeseries_ID.ome.tiffPlease work through the official documentation to learn how to run the software.
That's it. The rest is analysis within napari!