| 1497 | } |
| 1498 | |
| 1499 | const mitk::MultiLabelSegmentation::LabelValueVectorType mitk::MultiLabelSegmentation::GetLabelValuesByName(const std::string_view name) const |
| 1500 | { |
| 1501 | LabelValueVectorType result; |
| 1502 | |
| 1503 | auto searchName = [&result, name](const Label* l) { if (l->GetName() == name) result.push_back(l->GetValue()); }; |
| 1504 | |
| 1505 | this->VisitLabels(this->GetAllLabelValues(), searchName); |
| 1506 | |
| 1507 | return result; |
| 1508 | } |
| 1509 | |
| 1510 | const mitk::MultiLabelSegmentation::LabelValueVectorType mitk::MultiLabelSegmentation::GetLabelValuesByName(GroupIndexType index, const std::string_view name) const |
| 1511 | { |