| 383 | |
| 384 | |
| 385 | std::string mitk::LabelSetImageHelper::CreateDisplayGroupName(const MultiLabelSegmentation* labelSetImage, MultiLabelSegmentation::GroupIndexType groupID) |
| 386 | { |
| 387 | const auto groupName = labelSetImage->GetGroupName(groupID); |
| 388 | if (groupName.empty()) |
| 389 | return "Group "+std::to_string(groupID + 1); |
| 390 | |
| 391 | return groupName; |
| 392 | } |
| 393 | |
| 394 | std::string mitk::LabelSetImageHelper::CreateDisplayLabelName(const MultiLabelSegmentation* labelSetImage, const Label* label) |
| 395 | { |
nothing calls this directly
no test coverage detected