Home > Software design >  Can active contour segment the image into different regions?
Can active contour segment the image into different regions?

Time:04-16

When I use the activecontour method in matlab, it seems that I can only segment the image into foreground and background, but I want to segment my MRI image into multiple regions, can I use activeconter in this case, or do I need to use other methods such as watershed?

CodePudding user response:

You can start with multiple seed contours to segment multiple regions but watershed might work better depending on how much different structures are overlapping.

  • Related