Closed Younger330 closed 9 months ago
Hi @Younger330 ,
Thanks for your interest.
The original input is a semantic segmentation mask. We randomly select one label during the training process.
SAM/MedSAM are promptable segmentation methods, which are not comparable to the typical fully automatic sementic segmentation.
Hi @Younger330 ,
Thanks for your interest.
The original input is a semantic segmentation mask. We randomly select one label during the training process.
SAM/MedSAM are promptable segmentation methods, which are not comparable to the typical fully automatic sementic segmentation.
Thanks for your reply. So, during inference, with bounding box prompts this model can only localize it without classify, correct?
yes.
Hello, I was looking through your code and noticed this line:
assert np.max(gt2D) == 1 and np.min(gt2D) == 0.0, "ground truth should be 0, 1"
In medical imaging, semantic segmentation tasks are quite common. I'm curious, can this model handle semantic segmentation?