Region growing for multiple seeds in Matlab

11.3k Views Asked by At

Are there any functions in Matlab that enable region growing for multiple seeds?

Thanks.

1

There are 1 best solutions below

0
On

You could try using a slightly different approach from here: http://www.shawnlankton.com/2008/03/growcut-segmentation-in-matlab/

Or why not take this region growing algorithm as a base: http://www.mathworks.com/matlabcentral/fileexchange/19084-region-growing/content/regiongrowing.m and simply add a for-loop to loop over your seeds!?

But yes, I did neither find an existing algorithm on the internet.