-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
190 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
from typing import Literal | ||
|
||
from ome_zarr_models.v04.image_label_types import ( | ||
RGBA, | ||
Color, | ||
LabelBase, | ||
Property, | ||
Source, | ||
Uint8, | ||
) | ||
|
||
__all__ = [ | ||
"RGBA", | ||
"Color", | ||
"Property", | ||
"Source", | ||
"Uint8", | ||
] | ||
|
||
|
||
class Label(LabelBase): | ||
""" | ||
Metadata for a single image-label. | ||
""" | ||
|
||
version: Literal["0.5"] | None = None |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,83 @@ | ||
from ome_zarr_models._v05.image_label import ImageLabel | ||
from ome_zarr_models._v05.axes import Axis | ||
from ome_zarr_models._v05.coordinate_transformations import VectorScale | ||
from ome_zarr_models._v05.image_label import ImageLabel, ImageLabelAttrs | ||
from ome_zarr_models._v05.image_label_types import Color, Label, Source | ||
from ome_zarr_models._v05.multiscales import Dataset, Multiscale | ||
from tests.v05.conftest import json_to_zarr_group | ||
|
||
|
||
def test_image_label() -> None: | ||
zarr_group = json_to_zarr_group(json_fname="image_label_example.json") | ||
ome_group = ImageLabel.from_zarr(zarr_group) | ||
assert ome_group.ome_attributes == None | ||
assert ome_group.ome_attributes == ImageLabelAttrs( | ||
image_label=Label( | ||
colors=( | ||
Color(label_value=0, rgba=(0, 0, 128, 128)), | ||
Color(label_value=1, rgba=(0, 128, 0, 128)), | ||
), | ||
properties=[ | ||
{ | ||
"label_value": 0, | ||
"area (pixels)": 1200, | ||
"class": "intercellular space", | ||
}, | ||
{ | ||
"label_value": 1, | ||
"area (pixels)": 1650, | ||
"class": "cell", | ||
"cell type": "neuron", | ||
}, | ||
], | ||
source=Source(image="../../"), | ||
version=None, | ||
), | ||
multiscales=[ | ||
Multiscale( | ||
axes=[ | ||
Axis(name="t", type="time", unit="millisecond"), | ||
Axis(name="c", type="channel", unit=None), | ||
Axis(name="z", type="space", unit="micrometer"), | ||
Axis(name="y", type="space", unit="micrometer"), | ||
Axis(name="x", type="space", unit="micrometer"), | ||
], | ||
datasets=( | ||
Dataset( | ||
path="0", | ||
coordinateTransformations=( | ||
VectorScale(type="scale", scale=[1.0, 1.0, 0.5, 0.5, 0.5]), | ||
), | ||
), | ||
Dataset( | ||
path="1", | ||
coordinateTransformations=( | ||
VectorScale(type="scale", scale=[1.0, 1.0, 1.0, 1.0, 1.0]), | ||
), | ||
), | ||
Dataset( | ||
path="2", | ||
coordinateTransformations=( | ||
VectorScale(type="scale", scale=[1.0, 1.0, 2.0, 2.0, 2.0]), | ||
), | ||
), | ||
), | ||
version=None, | ||
coordinateTransformations=( | ||
VectorScale(type="scale", scale=[0.1, 1.0, 1.0, 1.0, 1.0]), | ||
), | ||
metadata={ | ||
"description": ( | ||
"the fields in metadata depend on the downscaling " | ||
"implementation. Here, the parameters passed to the skimage " | ||
"function are given" | ||
), | ||
"method": "skimage.transform.pyramid_gaussian", | ||
"version": "0.16.1", | ||
"args": "[true]", | ||
"kwargs": {"multichannel": True}, | ||
}, | ||
name="example", | ||
type="gaussian", | ||
) | ||
], | ||
version="0.5", | ||
) |