We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6a15ab commit 95e2f60Copy full SHA for 95e2f60
cellpose/gui/io.py
@@ -580,13 +580,16 @@ def _save_flows(parent):
580
""" save flows and cellprob to tiff """
581
filename = parent.filename
582
base = os.path.splitext(filename)[0]
583
+ print("GUI_INFO: saving flows and cellprob to tiff")
584
if len(parent.flows) > 0:
585
imsave(base + "_cp_cellprob.tif", parent.flows[1])
586
for i in range(3):
587
imsave(base + f"_cp_flow_{i}.tif", parent.flows[0][..., i])
588
if len(parent.flows) > 2:
589
imsave(base + "_cp_flow.tif", parent.flows[2])
-
590
+ print("GUI_INFO: saved flows and cellprob")
591
+ else:
592
+ print("ERROR: no flows or cellprob found")
593
594
def _save_rois(parent):
595
""" save masks as rois in .zip file for ImageJ """
0 commit comments