| 135 | } |
| 136 | |
| 137 | void mitk::PickingTool::ClearSeeds() |
| 138 | { |
| 139 | if (this->m_PointSet.IsNotNull()) |
| 140 | { |
| 141 | // renew pointset |
| 142 | this->m_PointSet = mitk::PointSet::New(); |
| 143 | //ensure that the seed points are visible for all timepoints. |
| 144 | dynamic_cast<ProportionalTimeGeometry*>(m_PointSet->GetTimeGeometry())->SetStepDuration(std::numeric_limits<TimePointType>::max()); |
| 145 | this->m_PointSetNode->SetData(this->m_PointSet); |
| 146 | } |
| 147 | } |
| 148 | |
| 149 | template <typename TPixel, unsigned int VImageDimension> |
| 150 | void DoITKRegionGrowing(const itk::Image<TPixel, VImageDimension>* oldSegImage, |
no test coverage detected