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
pipeline.add_option("--series-group-by", seriesGroupByOption, "Create series so that all instances in a series share these tags. Option is a JSON object with a \"tags\" array. Example tag: \"0008|103e\". If not provided, defaults to Series UID and Frame Of Reference UID tags.")->type_name("INPUT_JSON");
737
+
itk::wasm::InputTextStream imageSetGroupByOption;
738
+
pipeline.add_option("--image-set-group-by", imageSetGroupByOption, "Create image sets so that all series in a set share these tags. Option is a JSON object with a \"tags\" array. Example tag: \"0008|103e\". If not provided, defaults to Study UID tag.")->type_name("INPUT_JSON");
Copy file name to clipboardexpand all lines: packages/dicom/python/itkwasm-dicom-emscripten/itkwasm_dicom_emscripten/image_sets_normalization_async.py
+12
Original file line number
Diff line number
Diff line change
@@ -18,12 +18,20 @@
18
18
19
19
asyncdefimage_sets_normalization_async(
20
20
files: List[os.PathLike] = [],
21
+
series_group_by: Optional[Any] =None,
22
+
image_set_group_by: Optional[Any] =None,
21
23
) ->Any:
22
24
"""Group DICOM files into image sets
23
25
24
26
:param files: DICOM files
25
27
:type files: os.PathLike
26
28
29
+
:param series_group_by: Create series so that all instances in a series share these tags. Option is a JSON object with a "tags" array. Example tag: "0008|103e". If not provided, defaults to Series UID and Frame Of Reference UID tags.
30
+
:type series_group_by: Any
31
+
32
+
:param image_set_group_by: Create image sets so that all series in a set share these tags. Option is a JSON object with a "tags" array. Example tag: "0008|103e". If not provided, defaults to Study UID tag.
Copy file name to clipboardexpand all lines: packages/dicom/python/itkwasm-dicom-wasi/itkwasm_dicom_wasi/image_sets_normalization.py
+20
Original file line number
Diff line number
Diff line change
@@ -18,12 +18,20 @@
18
18
19
19
defimage_sets_normalization(
20
20
files: List[os.PathLike] = [],
21
+
series_group_by: Optional[Any] =None,
22
+
image_set_group_by: Optional[Any] =None,
21
23
) ->Any:
22
24
"""Group DICOM files into image sets
23
25
24
26
:param files: DICOM files
25
27
:type files: os.PathLike
26
28
29
+
:param series_group_by: Create series so that all instances in a series share these tags. Option is a JSON object with a "tags" array. Example tag: "0008|103e". If not provided, defaults to Series UID and Frame Of Reference UID tags.
30
+
:type series_group_by: Any
31
+
32
+
:param image_set_group_by: Create image sets so that all series in a set share these tags. Option is a JSON object with a "tags" array. Example tag: "0008|103e". If not provided, defaults to Study UID tag.
Copy file name to clipboardexpand all lines: packages/dicom/python/itkwasm-dicom/itkwasm_dicom/image_sets_normalization.py
+9-1
Original file line number
Diff line number
Diff line change
@@ -10,15 +10,23 @@
10
10
11
11
defimage_sets_normalization(
12
12
files: List[os.PathLike] = [],
13
+
series_group_by: Optional[Any] =None,
14
+
image_set_group_by: Optional[Any] =None,
13
15
) ->Any:
14
16
"""Group DICOM files into image sets
15
17
16
18
:param files: DICOM files
17
19
:type files: os.PathLike
18
20
21
+
:param series_group_by: Create series so that all instances in a series share these tags. Option is a JSON object with a "tags" array. Example tag: "0008|103e". If not provided, defaults to Series UID and Frame Of Reference UID tags.
22
+
:type series_group_by: Any
23
+
24
+
:param image_set_group_by: Create image sets so that all series in a set share these tags. Option is a JSON object with a "tags" array. Example tag: "0008|103e". If not provided, defaults to Study UID tag.
Copy file name to clipboardexpand all lines: packages/dicom/python/itkwasm-dicom/itkwasm_dicom/image_sets_normalization_async.py
+9-1
Original file line number
Diff line number
Diff line change
@@ -10,15 +10,23 @@
10
10
11
11
asyncdefimage_sets_normalization_async(
12
12
files: List[os.PathLike] = [],
13
+
series_group_by: Optional[Any] =None,
14
+
image_set_group_by: Optional[Any] =None,
13
15
) ->Any:
14
16
"""Group DICOM files into image sets
15
17
16
18
:param files: DICOM files
17
19
:type files: os.PathLike
18
20
21
+
:param series_group_by: Create series so that all instances in a series share these tags. Option is a JSON object with a "tags" array. Example tag: "0008|103e". If not provided, defaults to Series UID and Frame Of Reference UID tags.
22
+
:type series_group_by: Any
23
+
24
+
:param image_set_group_by: Create image sets so that all series in a set share these tags. Option is a JSON object with a "tags" array. Example tag: "0008|103e". If not provided, defaults to Study UID tag.
0 commit comments