|
1 | | -# Copyright 2021-2022 MONAI Consortium |
| 1 | +# Copyright 2021-2026 MONAI Consortium |
2 | 2 | # Licensed under the Apache License, Version 2.0 (the "License"); |
3 | 3 | # you may not use this file except in compliance with the License. |
4 | 4 | # You may obtain a copy of the License at |
@@ -96,6 +96,7 @@ def __init__( |
96 | 96 | # "SR" for Structured Report. |
97 | 97 | # Media Storage SOP Class UID, e.g., |
98 | 98 | # "1.2.840.10008.5.1.4.1.1.88.11" for Basic Text SR Storage |
| 99 | + # "1.2.840.10008.5.1.4.1.1.88.22" for Enhanced SR |
99 | 100 | # "1.2.840.10008.5.1.4.1.1.104.1" for Encapsulated PDF Storage, |
100 | 101 | # "1.2.840.10008.5.1.4.1.1.88.34" for Comprehensive 3D SR IOD |
101 | 102 | # "1.2.840.10008.5.1.4.1.1.66.4" for Segmentation Storage |
@@ -192,8 +193,12 @@ def write(self, content_text, dicom_series: Optional[DICOMSeries], output_dir: P |
192 | 193 | ) |
193 | 194 |
|
194 | 195 | # SR specific |
| 196 | + ds.CompletionFlag = "COMPLETE" # Estimated degree of completeness. |
195 | 197 | ds.VerificationFlag = "UNVERIFIED" # Not attested by a legally accountable person. |
196 | 198 |
|
| 199 | + ds.ReferencedPerformedProcedureStepSequence = Sequence([]) # Required by SR Document Series |
| 200 | + ds.PerformedProcedureCodeSequence = Sequence([]) # Required by SR Document General |
| 201 | + |
197 | 202 | # Per recommendation of IHE Radiology Technical Framework Supplement |
198 | 203 | # AI Results (AIR) Rev1.1 - Trial Implementation |
199 | 204 | # Specifically for Qualitative Findings, |
|
0 commit comments