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
enums based on https://github.com/InsightSoftwareConsortium/ITK/blob/311b7060ef39e371f3cd209ec135284ff5fde735/Modules/Core/Common/include/itkSpatialOrientation.h#L88
206
+
207
+
@enum CoordinateTerms
208
+
209
+
210
+
Defines coordinate terms based on ITK spatial orientation. Possible values are:
211
+
212
+
- `ITK_COORDINATE_UNKNOWN`: Unknown coordinate
213
+
214
+
- `ITK_COORDINATE_Right`: Right
215
+
216
+
- `ITK_COORDINATE_Left`: Left
217
+
218
+
- `ITK_COORDINATE_Posterior`: Posterior
219
+
220
+
- `ITK_COORDINATE_Anterior`: Anterior
221
+
222
+
- `ITK_COORDINATE_Inferior`: Inferior
223
+
224
+
- `ITK_COORDINATE_Superior`: Superior
225
+
90
226
"""
91
227
@enum CoordinateTerms begin
92
228
ITK_COORDINATE_UNKNOWN =0
@@ -98,12 +234,57 @@ enums based on https://github.com/InsightSoftwareConsortium/ITK/blob/311b7060ef3
98
234
ITK_COORDINATE_Superior =9
99
235
end
100
236
237
+
238
+
239
+
240
+
241
+
"""
242
+
243
+
@enum CoordinateMajornessTerms
244
+
245
+
246
+
Defines the majorness of coordinates. Possible values are:
247
+
248
+
- `PrimaryMinor`: Primary minor coordinate
249
+
250
+
- `SecondaryMinor`: Secondary minor coordinate
251
+
252
+
- `TertiaryMinor`: Tertiary minor coordinate
253
+
254
+
"""
101
255
@enum CoordinateMajornessTerms begin
102
256
PrimaryMinor =0
103
257
SecondaryMinor =8
104
258
TertiaryMinor =16
105
259
end
106
260
261
+
262
+
263
+
264
+
"""
265
+
266
+
@enum Orientation_code
267
+
268
+
269
+
Defines orientation codes for medical images. Possible values include:
0 commit comments