@@ -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 )
0 commit comments