| 241 | |
| 242 | |
| 243 | mitk::MultiLabelSegmentation::~MultiLabelSegmentation() |
| 244 | { |
| 245 | for (auto [value, label] : m_LabelMap) |
| 246 | { |
| 247 | (void)value; // Prevent unused variable error in older compilers |
| 248 | this->ReleaseLabel(label); |
| 249 | } |
| 250 | m_LabelMap.clear(); |
| 251 | } |
| 252 | |
| 253 | unsigned int mitk::MultiLabelSegmentation::GetActiveLayer() const |
| 254 | { |
nothing calls this directly
no test coverage detected