| 66 | } |
| 67 | |
| 68 | void AddLabelMissing(std::vector<mitk::DICOMSegmentationPropertyHelper::MissingItem>& out, |
| 69 | mitk::Label::PixelType labelValue, |
| 70 | const std::string& description) |
| 71 | { |
| 72 | mitk::DICOMSegmentationPropertyHelper::MissingItem item; |
| 73 | item.scope = mitk::DICOMSegmentationPropertyHelper::MissingItem::Scope::Label; |
| 74 | item.identifier = std::to_string(labelValue); |
| 75 | item.description = description; |
| 76 | out.push_back(item); |
| 77 | } |
| 78 | |
| 79 | struct SegmentationLevelRequirement |
| 80 | { |