| 101 | }; |
| 102 | |
| 103 | mitk::MultiLabelSegmentation::MultiLabelSegmentation() |
| 104 | : mitk::SlicedData(), m_ActiveLabelValue(0), m_UnlabeledLabelLock(false) |
| 105 | { |
| 106 | m_LookupTable = mitk::LookupTable::New(); |
| 107 | m_LookupTable->SetType(mitk::LookupTable::MULTILABEL); |
| 108 | |
| 109 | DICOMSegmentationPropertyHelper::Complete(this, |
| 110 | DICOMSegmentationPropertyHelper::CompletionOptions{}); |
| 111 | } |
| 112 | |
| 113 | mitk::MultiLabelSegmentation::MultiLabelSegmentation(const mitk::MultiLabelSegmentation &other) |
| 114 | : SlicedData(other), |