-
Notifications
You must be signed in to change notification settings - Fork 0
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
New service: serve output OME-Zarr #1
Comments
Here is a log of a preliminary exploration. Serve the zarr array via httpI could not find whether vizarr can work with local zarr arrays. If not, we have to serve the array via http. from simple_zarr_server import serve
import zarr
group = zarr.open_group("/.../fractal-tasks-core/tests/data/10_5281_zenodo_8091756/plate.zarr/B/03/0")
serve(group, allowed_origins=["*"]) Run vizarr locallyI cloned the https://github.com/hms-dbmi/vizarr repo, and I modified const source = process.env.VIZARR_DATA || 'http://127.0.0.1:8000' Other than that, a combination of The first view is empty: (note: one could even start by using the existing vizarr instance, e.g. with https://hms-dbmi.github.io/vizarr/?source=http://127.0.0.1:8000) |
Oh, that's super promising! Will want to try this locally as well, thanks for sharing the steps! |
Interesting link: hms-dbmi/vizarr#176 EDIT: group = zarr.open("/somewhere.zarr")
viewer = vizarr.Viewer()
viewer.add_image(group) |
Closing (old issue) |
This would be a nice-to-have prototype of a feature that we will eventually include in Fractal.
After the
demos
service is complete, we could startup a image-viewer service so that the user can directly go to localhost:something and view the output image.The text was updated successfully, but these errors were encountered: