mlarray 0.0.28__tar.gz → 0.0.30__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {mlarray-0.0.28 → mlarray-0.0.30}/PKG-INFO +1 -1
- {mlarray-0.0.28 → mlarray-0.0.30}/docs/api.md +4 -0
- {mlarray-0.0.28 → mlarray-0.0.30}/mlarray.egg-info/PKG-INFO +1 -1
- {mlarray-0.0.28 → mlarray-0.0.30}/.github/workflows/workflow.yml +0 -0
- {mlarray-0.0.28 → mlarray-0.0.30}/.gitignore +0 -0
- {mlarray-0.0.28 → mlarray-0.0.30}/LICENSE +0 -0
- {mlarray-0.0.28 → mlarray-0.0.30}/MANIFEST.in +0 -0
- {mlarray-0.0.28 → mlarray-0.0.30}/README.md +0 -0
- {mlarray-0.0.28 → mlarray-0.0.30}/assets/banner.png +0 -0
- {mlarray-0.0.28 → mlarray-0.0.30}/assets/banner.png~ +0 -0
- {mlarray-0.0.28 → mlarray-0.0.30}/docs/cli.md +0 -0
- {mlarray-0.0.28 → mlarray-0.0.30}/docs/index.md +0 -0
- {mlarray-0.0.28 → mlarray-0.0.30}/docs/optimization.md +0 -0
- {mlarray-0.0.28 → mlarray-0.0.30}/docs/schema.md +17 -17
- {mlarray-0.0.28 → mlarray-0.0.30}/docs/usage.md +0 -0
- {mlarray-0.0.28 → mlarray-0.0.30}/docs/why.md +0 -0
- {mlarray-0.0.28 → mlarray-0.0.30}/examples/example_channel.py +0 -0
- {mlarray-0.0.28 → mlarray-0.0.30}/examples/example_metadata_only.py +0 -0
- {mlarray-0.0.28 → mlarray-0.0.30}/examples/example_open.py +0 -0
- {mlarray-0.0.28 → mlarray-0.0.30}/examples/example_save_load.py +0 -0
- {mlarray-0.0.28 → mlarray-0.0.30}/mkdocs.yml +0 -0
- {mlarray-0.0.28 → mlarray-0.0.30}/mlarray/__init__.py +0 -0
- {mlarray-0.0.28 → mlarray-0.0.30}/mlarray/cli.py +0 -0
- {mlarray-0.0.28 → mlarray-0.0.30}/mlarray/meta.py +0 -0
- {mlarray-0.0.28 → mlarray-0.0.30}/mlarray/mlarray.py +0 -0
- {mlarray-0.0.28 → mlarray-0.0.30}/mlarray/utils.py +0 -0
- {mlarray-0.0.28 → mlarray-0.0.30}/mlarray.egg-info/SOURCES.txt +0 -0
- {mlarray-0.0.28 → mlarray-0.0.30}/mlarray.egg-info/dependency_links.txt +0 -0
- {mlarray-0.0.28 → mlarray-0.0.30}/mlarray.egg-info/entry_points.txt +0 -0
- {mlarray-0.0.28 → mlarray-0.0.30}/mlarray.egg-info/requires.txt +0 -0
- {mlarray-0.0.28 → mlarray-0.0.30}/mlarray.egg-info/top_level.txt +0 -0
- {mlarray-0.0.28 → mlarray-0.0.30}/pyproject.toml +0 -0
- {mlarray-0.0.28 → mlarray-0.0.30}/setup.cfg +0 -0
- {mlarray-0.0.28 → mlarray-0.0.30}/tests/test_metadata.py +0 -0
- {mlarray-0.0.28 → mlarray-0.0.30}/tests/test_optimization.py +0 -0
- {mlarray-0.0.28 → mlarray-0.0.30}/tests/test_usage.py +0 -0
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -58,13 +58,6 @@ This section stores the information needed to interpret the array in physical sp
|
|
|
58
58
|
|
|
59
59
|
---
|
|
60
60
|
|
|
61
|
-
### is_seg
|
|
62
|
-
|
|
63
|
-
* **Description:** Whether the image is a segmentation mask.
|
|
64
|
-
* **Dataclass:** None (boolean).
|
|
65
|
-
|
|
66
|
-
---
|
|
67
|
-
|
|
68
61
|
### stats
|
|
69
62
|
|
|
70
63
|
* **Description:** Summary statistics for the image.
|
|
@@ -102,21 +95,13 @@ Bounding boxes are stored in a normalized, axis-aligned representation that work
|
|
|
102
95
|
|
|
103
96
|
---
|
|
104
97
|
|
|
105
|
-
###
|
|
98
|
+
### is_seg
|
|
106
99
|
|
|
107
|
-
* **Description:** Whether
|
|
100
|
+
* **Description:** Whether the image is a segmentation mask.
|
|
108
101
|
* **Dataclass:** None (boolean).
|
|
109
102
|
|
|
110
103
|
---
|
|
111
104
|
|
|
112
|
-
### _image_meta_format
|
|
113
|
-
|
|
114
|
-
* **Description:** Source format identifier for the `image` metadata (e.g., "dicom",
|
|
115
|
-
"nifti", "nrrd"). This is advisory and application-defined.
|
|
116
|
-
* **Dataclass:** None (string).
|
|
117
|
-
|
|
118
|
-
---
|
|
119
|
-
|
|
120
105
|
### _blosc2
|
|
121
106
|
|
|
122
107
|
* **Description:** Blosc2 layout parameters.
|
|
@@ -132,6 +117,21 @@ This section records how the array was laid out on disk (chunking, blocking, pat
|
|
|
132
117
|
|
|
133
118
|
---
|
|
134
119
|
|
|
120
|
+
### _has_array
|
|
121
|
+
|
|
122
|
+
* **Description:** Whether this metadata instance represents an on-disk array.
|
|
123
|
+
* **Dataclass:** None (boolean).
|
|
124
|
+
|
|
125
|
+
---
|
|
126
|
+
|
|
127
|
+
### _image_meta_format
|
|
128
|
+
|
|
129
|
+
* **Description:** Source format identifier for the `image` metadata (e.g., "dicom",
|
|
130
|
+
"nifti", "nrrd"). This is advisory and application-defined.
|
|
131
|
+
* **Dataclass:** None (string).
|
|
132
|
+
|
|
133
|
+
---
|
|
134
|
+
|
|
135
135
|
### _mlarray_version
|
|
136
136
|
|
|
137
137
|
* **Description:** MLArray version string used to write the file.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|