@@ -67,11 +67,13 @@ description includes the following information:
6767 segment represents an anatomical structure, a tissue type, or an abnormality.
6868 This is passed as either a
6969 :class: `highdicom.sr.CodedConcept `, or a :class: `pydicom.sr.coding.Code `
70- object.
70+ object. See
71+ :dcm: `CID 7150 <part16/sect_CID_7150.html> ` for the associated context group.
7172- **Segmented Property Type **: Another coded value that more specifically
7273 describes the segmented region, as for example a kidney or tumor. This is
7374 passed as either a :class: `highdicom.sr.CodedConcept `, or a
74- :class: `pydicom.sr.coding.Code ` object.
75+ :class: `pydicom.sr.coding.Code ` object. See
76+ :dcm: `CID 7151 <part16/sect_CID_7151.html> ` for the associated context group.
7577- **Algorithm Type **: Whether the segment was produced by an automatic,
7678 semi-automatic, or manual algorithm. The valid values are contained within the
7779 enum :class: `highdicom.seg.SegmentAlgorithmTypeValues `.
@@ -112,7 +114,7 @@ representing a liver that has been manually segmented.
112114 liver_description = hd.seg.SegmentDescription(
113115 segment_number = 1 ,
114116 segment_label = ' liver' ,
115- segmented_property_category = codes.SCT .Organ ,
117+ segmented_property_category = codes.SCT .AnatomicalStructure ,
116118 segmented_property_type = codes.SCT .Liver,
117119 algorithm_type = hd.seg.SegmentAlgorithmTypeValues.MANUAL ,
118120 display_color = hd.color.CIELabColor.from_string(' red' ),
@@ -244,7 +246,7 @@ everything else the same.
244246 liver_description = hd.seg.SegmentDescription(
245247 segment_number = 1 ,
246248 segment_label = ' liver' ,
247- segmented_property_category = codes.SCT .Organ ,
249+ segmented_property_category = codes.SCT .AnatomicalStructure ,
248250 segmented_property_type = codes.SCT .Liver,
249251 algorithm_type = hd.seg.SegmentAlgorithmTypeValues.MANUAL ,
250252 )
@@ -321,7 +323,7 @@ example to use the labelmap segmentation type.
321323 liver_description = hd.seg.SegmentDescription(
322324 segment_number = 1 ,
323325 segment_label = ' liver' ,
324- segmented_property_category = codes.SCT .Organ ,
326+ segmented_property_category = codes.SCT .AnatomicalStructure ,
325327 segmented_property_type = codes.SCT .Liver,
326328 algorithm_type = hd.seg.SegmentAlgorithmTypeValues.MANUAL ,
327329 )
@@ -387,7 +389,7 @@ segmentation type.
387389 liver_description = hd.seg.SegmentDescription(
388390 segment_number = 1 ,
389391 segment_label = ' liver' ,
390- segmented_property_category = codes.SCT .Organ ,
392+ segmented_property_category = codes.SCT .AnatomicalStructure ,
391393 segmented_property_type = codes.SCT .Liver,
392394 algorithm_type = hd.seg.SegmentAlgorithmTypeValues.MANUAL ,
393395 )
@@ -475,7 +477,7 @@ always be present even if there is a single source frame.
475477 liver_description = hd.seg.SegmentDescription(
476478 segment_number = 2 ,
477479 segment_label = ' liver' ,
478- segmented_property_category = codes.SCT .Organ ,
480+ segmented_property_category = codes.SCT .AnatomicalStructure ,
479481 segmented_property_type = codes.SCT .Liver,
480482 algorithm_type = hd.seg.SegmentAlgorithmTypeValues.MANUAL ,
481483 )
@@ -635,7 +637,7 @@ must have exactly one channel dimension with the descriptor being the
635637 liver_description = hd.seg.SegmentDescription(
636638 segment_number = 1 ,
637639 segment_label = ' liver' ,
638- segmented_property_category = codes.SCT .Organ ,
640+ segmented_property_category = codes.SCT .AnatomicalStructure ,
639641 segmented_property_type = codes.SCT .Liver,
640642 algorithm_type = hd.seg.SegmentAlgorithmTypeValues.MANUAL ,
641643 )
@@ -734,7 +736,7 @@ For example:
734736 liver_description = hd.seg.SegmentDescription(
735737 segment_number = 1 ,
736738 segment_label = ' liver' ,
737- segmented_property_category = codes.SCT .Organ ,
739+ segmented_property_category = codes.SCT .AnatomicalStructure ,
738740 segmented_property_type = codes.SCT .Liver,
739741 algorithm_type = hd.seg.SegmentAlgorithmTypeValues.MANUAL ,
740742 )
@@ -827,7 +829,7 @@ between the items of the ``source_images`` list and axis 0 of the segmentation
827829 liver_description = hd.seg.SegmentDescription(
828830 segment_number = 1 ,
829831 segment_label = ' liver' ,
830- segmented_property_category = codes.SCT .Organ ,
832+ segmented_property_category = codes.SCT .AnatomicalStructure ,
831833 segmented_property_type = codes.SCT .Liver,
832834 algorithm_type = hd.seg.SegmentAlgorithmTypeValues.MANUAL ,
833835 )
@@ -1187,7 +1189,7 @@ representing a probabilistic segmentation of the liver.
11871189 liver_description = hd.seg.SegmentDescription(
11881190 segment_number = 1 ,
11891191 segment_label = ' liver' ,
1190- segmented_property_category = codes.SCT .Organ ,
1192+ segmented_property_category = codes.SCT .AnatomicalStructure ,
11911193 segmented_property_type = codes.SCT .Liver,
11921194 algorithm_type = hd.seg.SegmentAlgorithmTypeValues.MANUAL ,
11931195 )
0 commit comments