| 355 | } |
| 356 | |
| 357 | mitk::MultiLabelSegmentation::LabelValueVectorType mitk::MultiLabelSegmentation::GetUsedLabelValues() const |
| 358 | { |
| 359 | LabelValueVectorType result = { UNLABELED_VALUE }; |
| 360 | |
| 361 | for (auto [value, label] : m_LabelMap) |
| 362 | { |
| 363 | (void)label; // Prevent unused variable error in older compilers |
| 364 | result.emplace_back(value); |
| 365 | } |
| 366 | |
| 367 | return result; |
| 368 | } |
| 369 | |
| 370 | mitk::MultiLabelSegmentation::GroupIndexType mitk::MultiLabelSegmentation::AddGroup(ConstLabelVector labels) |
| 371 | { |
no outgoing calls
no test coverage detected