| 1489 | } |
| 1490 | |
| 1491 | const mitk::MultiLabelSegmentation::LabelValueVectorType mitk::MultiLabelSegmentation::GetLabelValuesByGroup(GroupIndexType index) const |
| 1492 | { |
| 1493 | if (!this->ExistGroup(index)) |
| 1494 | mitkThrow() << "Cannot get labels of an invalid group. Invalid group index: " << index; |
| 1495 | |
| 1496 | return m_GroupToLabelMap[index]; |
| 1497 | } |
| 1498 | |
| 1499 | const mitk::MultiLabelSegmentation::LabelValueVectorType mitk::MultiLabelSegmentation::GetLabelValuesByName(const std::string_view name) const |
| 1500 | { |