We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Christoph Gohlke shared his recipe here:
https://forum.image.sc/t/wholeslide-ome-tiff-in-napari-from-ipython/52872/5
import tifffile import zarr import napari filename = 'HSM0170-20x20.ome.tiff' # 163 GB compressed store = tifffile.imread(filename, aszarr=True) zgroup = zarr.open(store, mode='r') print(zgroup.info) print(zgroup[0].info) data = [ zgroup[int(dataset['path'])] for dataset in zgroup.attrs['multiscales'][0]['datasets'] ] viewer = napari.view_image(data, rgb=True, contrast_limits=[0, 255]) napari.run() store.close()
The text was updated successfully, but these errors were encountered:
PRs welcome!
Sorry, something went wrong.
This issue has been mentioned on Image.sc Forum. There might be relevant details there:
https://forum.image.sc/t/napari-ome-tiff-reader/91918/14
Closed by #24
No branches or pull requests
Christoph Gohlke shared his recipe here:
https://forum.image.sc/t/wholeslide-ome-tiff-in-napari-from-ipython/52872/5
The text was updated successfully, but these errors were encountered: