0

While dealing with image segmentation tasks using models like the UNet family(Unet++, double UNet, ResUNet..), most of the tasks were to find one specific instance, meaning the mask was a single object like detecting the left heart from the Ultra Sound medical images.

However this time, I am currently handling a cell segmentation task with a lot of instances to segment as a mask. (One class though)

I am curious if using a RoI generating model like MaskRCNN would be better this case than a UNet like network.

Also, is it better to use the pretrained network like pytorch segmentation models? (I used to make and train all my models from scratch.)

Thank you.

Shai
  • 111,146
  • 38
  • 238
  • 371

1 Answers1

0

Your problem definition does sound more like instance segmentation than semantic segmentation. Therefore, it is more "natural" to use architectures designed for that specific task.
Furthermore, in general, it is easier to re-use existing models/code rather than re-implementing them from scratch.

Shai
  • 111,146
  • 38
  • 238
  • 371