| 343 | }; |
| 344 | |
| 345 | const mitk::MultiLabelSegmentation::LabelValueVectorType mitk::MultiLabelSegmentation::GetAllLabelValues() const |
| 346 | { |
| 347 | LabelValueVectorType result; |
| 348 | |
| 349 | for (auto [value, label] : m_LabelMap) |
| 350 | { |
| 351 | (void)label; // Prevent unused variable error in older compilers |
| 352 | result.emplace_back(value); |
| 353 | } |
| 354 | return result; |
| 355 | } |
| 356 | |
| 357 | mitk::MultiLabelSegmentation::LabelValueVectorType mitk::MultiLabelSegmentation::GetUsedLabelValues() const |
| 358 | { |
no outgoing calls