Stop region grow with a stop point

Hello everyone,

I want to implement region grow with a stop point. When propagation region reaches the stop point, region grow is end. So how to implement it with itk?
Best and thanks,
Tao Han

Hello TaoH,

I don’t believe ITK has a basic region growing with a stopping point termination criteria. However, it won’t surprise me if someone has already written one as an ITK remote or external module. Perhaps further searching or someone will chime is with this one.

However, you can use a FastMarching filter with an appropriate speed function composed of zeros and ones to do the equivalent operations. This filter also has a FastMarchingReachedTargetNodesStoppingCriterion which can be used to achieve your stopping criteria. You have to dig around through the tests and examples to find out how to uses these components together.

1 Like