| 382 | } |
| 383 | |
| 384 | void mitk::MultiLabelSegmentation::InsertGroup(GroupIndexType groupID, ConstLabelVector labels, std::string name) |
| 385 | { |
| 386 | auto newImage = this->GenerateNewGroupImage(); |
| 387 | ClearImageBuffer(newImage); |
| 388 | |
| 389 | this->InsertGroup(groupID, newImage, labels, name); |
| 390 | } |
| 391 | |
| 392 | void mitk::MultiLabelSegmentation::InsertGroup(GroupIndexType groupID, mitk::Image* groupImage, ConstLabelVector labels, std::string name) |
| 393 | { |
no test coverage detected