You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Redefine SummaryImage to allow for 3d summary images (#42)
* Add neurodata types for core and ndx-ophys-devices in namespace
* Add 3d SummaryImage
* Add description attribute to imaging space and segmentation classes
* Update mock segmentation functions to use ndx_microscopy.SummaryImage type for summary_images
Copy file name to clipboardExpand all lines: spec/ndx-microscopy.extensions.yaml
+30-6Lines changed: 30 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -58,9 +58,6 @@ groups:
58
58
neurodata_type_inc: NWBContainer
59
59
doc: Abstract class to contain metadata about the region of physical space that imaging data was recorded from. Extended by PlanarImagingSpace and VolumetricImagingSpace.
60
60
datasets:
61
-
- name: description
62
-
dtype: text
63
-
doc: Description of the imaging space.
64
61
- name: origin_coordinates
65
62
dtype: float64
66
63
dims:
@@ -77,6 +74,9 @@ groups:
77
74
default_value: micrometers
78
75
doc: Measurement units for origin coordinates. The default value is 'micrometers'.
79
76
attributes:
77
+
- name: description
78
+
dtype: text
79
+
doc: Description of the imaging space.
80
80
- name: location
81
81
dtype: text
82
82
doc:
@@ -220,15 +220,39 @@ groups:
220
220
doc: Results from image segmentation of a specific imaging space.
221
221
quantity: "+"
222
222
223
-
- neurodata_type_def: SummaryImages
224
-
neurodata_type_inc: Images
223
+
- neurodata_type_def: SummaryImage
224
+
neurodata_type_inc: NWBContainer
225
225
doc: Summary images that are related to the segmentation, e.g., mean, correlation, maximum projection.
226
+
datasets:
227
+
- name: data
228
+
doc: Summary image data.
229
+
dtype: numeric
230
+
dims:
231
+
- - height
232
+
- width
233
+
- - height
234
+
- width
235
+
- depth
236
+
shape:
237
+
- - null
238
+
- null
239
+
- - null
240
+
- null
241
+
- null
242
+
attributes:
243
+
- name: description
244
+
dtype: text
245
+
doc: Description of the summary image.
226
246
227
247
- neurodata_type_def: Segmentation
228
248
neurodata_type_inc: DynamicTable
229
249
doc: Abstract class to contain the results from image segmentation of a specific imaging space.
250
+
attributes:
251
+
- name: description
252
+
dtype: text
253
+
doc: Description of the segmentation method used.
230
254
groups:
231
-
- neurodata_type_inc: SummaryImages
255
+
- neurodata_type_inc: SummaryImage
232
256
doc: Summary images that are related to the segmentation, e.g., mean, correlation, maximum projection.
0 commit comments