SamsungLabs / fbrs_interactive_segmentation

[CVPR2020] f-BRS: Rethinking Backpropagating Refinement for Interactive Segmentation https://arxiv.org/abs/2001.10331
Mozilla Public License 2.0
583 stars 94 forks source link

Clicks for different classes. #30

Closed chamecall closed 3 years ago

chamecall commented 3 years ago

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

chamecall commented 3 years ago

May it possibly pass clicks of different objects in batch?

chamecall commented 3 years ago

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

ksofiyuk commented 3 years ago

С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.