| 600 | } |
| 601 | |
| 602 | mitk::Image* mitk::MultiLabelSegmentation::GetGroupImage(GroupIndexType groupID) |
| 603 | { |
| 604 | if (!this->ExistGroup(groupID)) mitkThrow() << "Error, cannot return group image. Group ID is invalid. Invalid ID: " << groupID; |
| 605 | |
| 606 | return m_GroupContainer[groupID]; |
| 607 | } |
| 608 | |
| 609 | |
| 610 | const mitk::Image* mitk::MultiLabelSegmentation::GetGroupImage(GroupIndexType groupID) const |