This is an implementation of the salient object detection method described in
This method aims at producing a highly compact set of detection windows for salient objects in uncontrained images, which may or may not contain salient objects. Please cite the above paper if you find this work useful.
- Linux
- Matlab
- Caffe & Matcaffe (We use the official master branch downloaded on 4/1/2016. Previous versions may not be compatible.)
- Unzip the files to a local folder (denoted as root_folder).
- Enter the root_folder and modify the Matcaffe path in setup.m.
- In Matlab, run setup.m and it will automatically download the pre-trained GoogleNet model.
- Run demo.m.
You can reproduce the result on the MSO dataset reported in the paper, by run benchmarkMSO.m. It will automatically download the MSO dataset and the pre-trained VGG16 model.
To change CNN models or other configurations, please check getParam.m.
In the demo, we use the pre-trained GoogleNet, which is faster and slightly better than the VGG16 model used in our paper. We have also added a heuristic window refining process for small objects. Note that this process is not included in our paper or used in our evaluation.