scaelles / OSVOS-TensorFlow

One-Shot Video Object Segmentation

Home Page:http://vision.ee.ethz.ch/~cvlsegmentation/osvos/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Boundary snapping

bhack opened this issue · comments

commented

Taking a look to the paper tables seems that boundary snapping branch is still relevant.
What we can try to use in this flavour?

The boundary snapping gives a boost of around 2.5% on the IoU metric as shown in the paper. Therefore, it is a refinement of the appearance model (the one that this code reproduces) and not the core of the algorithm. The boundary snapping is implemented in Matlab and implementing it in python would require quite a lot of time so we are not planning to do it.

In the paper we also tried another refinement using the Fast Bilateral Solver which also gives a nice (but smaller than boundary snapping) improvement and there is code available in python. Thus, I would recommend you to give it a try.

commented

There is a c++ implementation
if you are interested

Thanks for your suggestion. Also, if you would like to use the boundary snapping, I recommend you to use the caffe version.