Main code for the ICCV2019 paper "Structured Modeling of Joint Deep Feature and Prediction Refinement for Salient Object Detection". Arxiv Link
Please install Caffe with the continous CRF layers based on the work ContinuousCRF-CNN2.
cd <caffe_root>/examples
git clone https://github.com/danxuhk/ContinuousCRF-CNN.git
- The training code can be found in
run_sal.py
. - The solver can be found in
solver.prototxt
. - The network protocol can be found in
train.prototxt
. - The corresponding files for pre-training are listed in the
pretrain
folder. - The testing code can be found in
test.m
ortest.py
. We used the matlab code in our own experiement.
The model can be downloaded here.
Note that this released model is newly trained and is slightly different from the one reported in our paper.
The resulted saliency maps on eight datasets can be downloaded here.
[1] Our paper:
@inproceedings{xu2019deepcrf,
title={Structured Modeling of Joint Deep Feature and Prediction Refinement for Salient Object Detection},
author={Xu, Yingyue and Xu, Dan and Hong, Xiaopeng and Ouyang, Wanli and Ji, Rongrong and Xu, Min and Zhao, Guoying},
booktitle={ICCV},
year={2019}
}
[2] ContinuousCRF-CNN:
@article{xu2018monocular,
title={Monocular Depth Estimation using Multi-Scale Continuous CRFs as Sequential Deep Networks},
author={Xu, Dan and Ricci, Elisa and Ouyang, Wanli and Wang, Xiaogang and Sebe, Nicu},
journal={IEEE TPAMI},
year={2018}
}