| 79 | } |
| 80 | |
| 81 | std::string mitk::SegGroupInsertOperation::GetGroupName(MultiLabelSegmentation::GroupIndexType groupID) const |
| 82 | { |
| 83 | if (m_Names.cend() != m_Names.find(groupID)) |
| 84 | { |
| 85 | return m_Names.at(groupID); |
| 86 | } |
| 87 | |
| 88 | return ""; |
| 89 | } |
| 90 | |
| 91 | mitk::SegGroupInsertOperation* mitk::SegGroupInsertOperation::CreateFromSegmentation( |
| 92 | MultiLabelSegmentation* segmentation, |
no test coverage detected