This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import zarr | |
| group = zarr.open_group('/home/UWO/akhan488/graham/lightsheet/test_eed/SPIMprep/bids/sub-M1A1Te3/micr/sub-M1A1Te3_sample-brain_acq-imaris_SPIM.ome.zarr.zip',mode='r') | |
| from cvpl_tools.ome_zarr.napari.add import group as add_group | |
| add_group(viewer=viewer,zarr_group=group,merge_channels=False) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import numpy as np | |
| import zarr | |
| import s3fs | |
| from zarr.storage import FsspecStore | |
| from ome_zarr.writer import write_image | |
| import os | |
| # Create data | |
| size_xy = 128 |
OlderNewer