-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
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
Error while enabling the Plugin in Napari #13
Comments
Hi, Ive got a problem. I can successfully download the napery-aicsimageio plugin (v0.2.0) via pip. After starting napari, I try to tick the plugins in the plug in menu (they appear there as installed.) But then an error pops up, I attached the log file. Best, Malte |
Hey! Sorry about this. It's because we released |
Oh maybe not the same issue.... To be honest I want to entirely rewrite this plugin and haven't actively been developing it or maitaining it in a while. I made a fork for new v1.0 work that will pick up with aicsimageio v4 but that is also under-developed at the moment. I am not sure when I will actively look into this. |
Thanks for your fast reply!! Okay, I need to analyse Zeiss leightsheet microscopy data. Any suggestion in how to tackle this under these circumatances? |
I would say trying just Here is the readme: https://github.com/AllenCellModeling/aicsimageio I would recommend reading the file with aicsimageio and then in python passing the numpy or dask array to from aicsimageio import AICSImage
import napari
with napari.gui_qt():
img = AICSImage("your-file.czi")
napari.view_image(img.data) # in memory
# napari.view_image(img.dask_data) # delayed chunk reading Note that we have had issues with light sheet data so hard to say really. |
No description provided.
The text was updated successfully, but these errors were encountered: