Closed tlambert03 closed 3 years ago
note i needed import tifffile as io
not import imageio as io
to get the 3D tiff reading right ...
LOL It should be from skimage import io
, but yes, better to change to:
import tifffile
nuclei = tifffile.imread(...)
in around the 4th code cell of 2_segmentation_and_regionprops, at
nuclei = io.imread('../images/cells.tif')
...io
is not defined