| 1348 | } |
| 1349 | |
| 1350 | void mitk::MultiLabelSegmentation::ApplyToLabels(const LabelValueVectorType& values, std::function<void(Label*)>&& lambda) |
| 1351 | { |
| 1352 | auto labels = this->GetLabelsByValue(values); |
| 1353 | std::for_each(labels.begin(), labels.end(), lambda); |
| 1354 | this->InvokeEvent(LabelsChangedEvent(values)); |
| 1355 | } |
| 1356 | |
| 1357 | void mitk::MultiLabelSegmentation::VisitLabels(const LabelValueVectorType& values, std::function<void(const Label*)>&& lambda) const |
| 1358 | { |
no test coverage detected