| 335 | } |
| 336 | |
| 337 | mitk::Image::Pointer mitk::SegTool2D::GetAffectedWorkingSlice(const InteractionPositionEvent *positionEvent) const |
| 338 | { |
| 339 | const auto workingData = this->GetWorkingData(); |
| 340 | if (!workingData) |
| 341 | { |
| 342 | return nullptr; |
| 343 | } |
| 344 | |
| 345 | return GetAffectedImageSliceAs2DImage(positionEvent, workingData->GetGroupImage(workingData->GetActiveLayer())); |
| 346 | } |
| 347 | |
| 348 | mitk::Image::Pointer mitk::SegTool2D::GetAffectedReferenceSlice(const InteractionPositionEvent *positionEvent) const |
| 349 | { |
no test coverage detected