We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b68577 commit 8b3133cCopy full SHA for 8b3133c
funlib/persistence/arrays/ome_datasets.py
@@ -10,7 +10,6 @@
10
11
from .array import Array
12
from .metadata import MetaData
13
-from .ome_tmp import get_effective_scale, get_effective_translation
14
15
logger = logging.getLogger(__name__)
16
@@ -57,8 +56,8 @@ def open_ome_ds(
57
56
units = [axis.unit for axis in axes if axis.unit is not None]
58
types = [axis.type for axis in axes if axis.type is not None]
59
60
- scale = get_effective_scale(ome_zarr, name)
61
- offset = get_effective_translation(ome_zarr, name)
+ scale = ome_zarr.get_effective_scale(name)
+ offset = ome_zarr.get_effective_translation(name)
62
63
dataset = ome_zarr[name]
64
funlib/persistence/arrays/ome_tmp.py
0 commit comments