SamsungLabs / fbrs_interactive_segmentation

[CVPR2020] f-BRS: Rethinking Backpropagating Refinement for Interactive Segmentation https://arxiv.org/abs/2001.10331

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Clicks for different classes.

chamecall opened this issue · comments

Сan I transfer to the network marks belonging to different objects, and not to signle one?

May it possibly pass clicks of different objects in batch?

Is it possible to forward image once and then pass different set of points multiple times?

Сan I transfer to the network marks belonging to different objects, and not to signle one?

Sorry, I'm not sure I understand what you mean, but I try to clarify. A batch can contain different images with points for each image and if you want to segment simultaneously different objects from one image, you can construct a batch that contains multiple copies of one image with points for different objects.

May it possibly pass clicks of different objects in batch?

Yes, it is possible if you form a batch with copies of an image as I mentioned it above.

Is it possible to forward image once and then pass different set of points multiple times?

No, it isn't possible. If your batch contains only one image (batchsize=1), you can pass points only for one object.