label_strict Examples#

This document contains JSON examples for label_strict metadata layouts.

colors_properties#

 1{
 2  "zarr_format": 3,
 3  "node_type": "group",
 4  "attributes": {
 5    "ome": {
 6      "version": "0.6.dev4",
 7      "multiscales": [
 8        {
 9          "coordinateSystems": [
10            {
11              "name": "physical",
12              "axes": [
13                {"name": "z", "unit": "micrometer"},
14                {"name": "y", "unit": "micrometer"},
15                {"name": "x", "unit": "micrometer"}
16              ]
17            }
18          ],
19          "datasets": [
20            {
21              "path": "s0",
22              "coordinateTransformations": [
23                {
24                  "type": "scale",
25                  "scale": [0.5, 0.5, 1],
26                  "input": {"path": "s0"},
27                  "output": {"name": "physical"}
28                }
29              ]
30            }
31          ]
32        }
33      ],
34      "image-label": {
35        "colors": [
36          {
37            "label-value": 0,
38            "rgba": [0, 0, 128, 128]
39          },
40          {
41            "label-value": 1,
42            "rgba": [0, 128, 0, 128]
43          }
44        ],
45        "properties": [
46          {
47            "label-value": 0,
48            "area (pixels)": 1200,
49            "class": "intercellular space"
50          },
51          {
52            "label-value": 1,
53            "area (pixels)": 1650,
54            "class": "cell",
55            "cell type": "neuron"
56          }
57        ],
58        "source": {
59          "image": "../../"
60        }
61      }
62    }
63  }
64}