| 602 | } |
| 603 | |
| 604 | mitk::MultiLabelSegmentation::LabelValueVectorType mitk::SegTool2D::GetAffectedLabelValues() const |
| 605 | { |
| 606 | if (auto* segmentation = this->GetWorkingData()) |
| 607 | if (auto* activeLabel = segmentation->GetActiveLabel()) |
| 608 | return { activeLabel->GetValue() }; |
| 609 | return {}; |
| 610 | } |
| 611 | |
| 612 | void mitk::SegTool2D::WriteBackSegmentationResults(const DataNode* workingNode, const std::vector<SliceInformation>& sliceList, bool writeSliceToVolume, bool allowUndo, const std::string& toolName) |
| 613 | { |
no test coverage detected