| 1342 | } |
| 1343 | |
| 1344 | void mitk::MultiLabelSegmentation::ReleaseLabel(Label* label) |
| 1345 | { |
| 1346 | if (nullptr == label) mitkThrow() << "Invalid call of ReleaseLabel with a nullptr."; |
| 1347 | m_LabelModEventGuardMap.erase(label->GetValue()); |
| 1348 | } |
| 1349 | |
| 1350 | void mitk::MultiLabelSegmentation::ApplyToLabels(const LabelValueVectorType& values, std::function<void(Label*)>&& lambda) |
| 1351 | { |
no test coverage detected