Make usable with world units in addition/instead of voxels?Β #9
Open
Description
Description
In general, it would be nice to be able to access data via world coordinates like in funlib.
What I Did
This is a common use case:
from funlib.persistence import open_ds
from funlib.geometry import Roi
ds = open_ds("/path/to/data.zarr","dataset")
Roi((0,0,0),(128,128,128)) # world coordinates
ds.to_ndarray(roi)