Skip to content

Commit c65bc11

Browse files
committed
model DICOM tag cleanup
Signed-off-by: bluna301 <[email protected]>
1 parent f5a495f commit c65bc11

File tree

2 files changed

+8
-10
lines changed

2 files changed

+8
-10
lines changed

examples/apps/cchmc_ped_abd_ct_seg_app/app.py

+6-8
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def compose(self):
109109
# https://dicom.nema.org/medical/dicom/current/output/chtml/part05/sect_6.2.html
110110

111111
# general algorithm information
112-
_algorithm_name = "3D Abdominal Organ Segmentation from CT Image"
112+
_algorithm_name = "CCHMC Pediatric CT Abdominal Segmentation"
113113
_algorithm_family = codes.DCM.ArtificialIntelligence
114114
_algorithm_version = "0.4.3"
115115

@@ -140,8 +140,8 @@ def compose(self):
140140
),
141141
]
142142

143-
# custom tags
144-
custom_tags_seg = {"SeriesDescription": "AI Generated DICOM SEG; Not for Clinical Use."}
143+
# custom tags - add Device UID to DICOM SEG to match SR and SC tags
144+
custom_tags_seg = {"SeriesDescription": "AI Generated DICOM SEG; Not for Clinical Use.", "DeviceUID": "0.0.1"}
145145
custom_tags_sr = {"SeriesDescription": "AI Generated DICOM SR; Not for Clinical Use."}
146146
custom_tags_sc = {"SeriesDescription": "AI Generated DICOM Secondary Capture; Not for Clinical Use."}
147147

@@ -160,10 +160,8 @@ def compose(self):
160160
)
161161

162162
# model and equipment info
163-
my_model_info = ModelInfo(
164-
"CCHMC Model for CT PED ABD SEG", "CT Pediatric Abdominal Segmentation", "0.4.3", "CCHMC"
165-
)
166-
my_equipment = EquipmentInfo(manufacturer="MONAI Deploy App SDK", manufacturer_model="DICOM Writer")
163+
my_model_info = ModelInfo("CCHMC CAIIR", "CCHMC Pediatric CT Abdominal Segmentation", "0.4.3", "0.0.1")
164+
my_equipment = EquipmentInfo(manufacturer="The MONAI Consortium", manufacturer_model="MONAI Deploy App SDK")
167165

168166
# DICOM SR Writer op
169167
dicom_sr_writer = DICOMTextSRWriterOperator(
@@ -192,7 +190,7 @@ def compose(self):
192190
# MongoDB database, collection, and MAP version info
193191
database_name = "CTLiverSpleenSegPredictions"
194192
collection_name = "OrganVolumes"
195-
map_version = "1.0.0"
193+
map_version = "0.0.1"
196194

197195
# custom MongoDB Entry Creator op
198196
mongodb_entry_creator = MongoDBEntryCreatorOperator(self, map_version=map_version)

examples/apps/cchmc_ped_abd_ct_seg_app/app.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515

1616
# specifies high-level information about our app
1717
application:
18-
title: MONAI Deploy App Package - CCHMC Pediatric Abdomen CT Seg Inference
19-
version: 1.0
18+
title: MONAI Deploy App Package - CCHMC Pediatric CT Abdominal Segmentation
19+
version: 0.0.1
2020
inputFormats: ["file"]
2121
outputFormats: ["file"]
2222

0 commit comments

Comments
 (0)