| 1355 | } |
| 1356 | |
| 1357 | void mitk::MultiLabelSegmentation::VisitLabels(const LabelValueVectorType& values, std::function<void(const Label*)>&& lambda) const |
| 1358 | { |
| 1359 | auto labels = this->GetConstLabelsByValue(values); |
| 1360 | std::for_each(labels.begin(), labels.end(), lambda); |
| 1361 | } |
| 1362 | |
| 1363 | |
| 1364 | void mitk::MultiLabelSegmentation::OnLabelModified(const Object* sender, const itk::EventObject&) |
no test coverage detected