-
Notifications
You must be signed in to change notification settings - Fork 41
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
Single-scale images #207
Comments
Ideally, a single resolution image would "just" be a multiscale image with one scale level. This would be nice for a lot of reasons -- OME-NGFF viewers will know how to deal with it, and if you later decide that you do need multiple levels of resolution, you can drop them in without reworking your metadata. You refer to a small ROI, but there's no guarantee that the next one is small :) . But as you note (and as I have experienced), the current multiscale metadata spec is unwieldy, both because it is needlessly verbose (specifying Purely hypothetically, consider the following minimized multiscale metadata scheme: Group metadata:
Array metadata (e.g., for
array metadata contains the information required to embed the array in physical space. seems legit. I'm namespacing all the ome-ngff stuff under a if we had something this compact for multiscale metadata, would you still want a separate single-scale schema @clbarnes ? |
That arrangement certainly looks good to me. I think, if anything, a "singlescale" spec would basically just be a name for the array-level metadata you've listed there. This would simplify specifying "multiscale" groups: rather than having to include the array-level metadata specification in that part of the spec, you'd just need to say "multiscale datasets are groups with X metadata, containing arrays with singlescale metadata with matching axes". |
Images are not always scale pyramids, but single-image arrays also benefit from some of the metadata we apply to multiscale groups. I suppose these are implicitly supported in the spec ("just add a
coordinateTransformations
andaxes
specified elsewhere") but IMO it would be useful to define single-scale datasets as their own valid type. The use case for me is extracting a small ROI from a single scale level of a larger volume.You can, of course, define a multiscale group with only one dataset in it, but then it becomes quite verbose, as well as having to bounce between the group and array metadata.
This is sort of the opposite of #187 : that asks to define some image metadata in a group above the containing group, where this asks to define some image metadata on the array itself.
This probably falls under #179 , although that is specifically about labels and how to store them in a hierarchy rather than the broader class of single-scale images.
I believe this converges with with proposed solution "c" in #200 (also discussed in #102 ) . This would also simplify the access API: it's the same whether you're accessing a single-scale array, or if you only care about a single scale of a multiscale group.
The text was updated successfully, but these errors were encountered: