| 1435 | } |
| 1436 | |
| 1437 | const mitk::MultiLabelSegmentation::ConstLabelVectorType mitk::MultiLabelSegmentation::GetLabels() const |
| 1438 | { |
| 1439 | ConstLabelVectorType result; |
| 1440 | for (auto [value, label] : m_LabelMap) |
| 1441 | { |
| 1442 | (void)value; // Prevent unused variable error in older compilers |
| 1443 | result.emplace_back(label); |
| 1444 | } |
| 1445 | return result; |
| 1446 | } |
| 1447 | |
| 1448 | const mitk::MultiLabelSegmentation::LabelVectorType mitk::MultiLabelSegmentation::GetLabels() |
| 1449 | { |
no outgoing calls
no test coverage detected