项目作者: Kinpzz

项目描述 :
Instance-Level Salient Object Detection, Computer Vision and Image Understanding (CVIU), 2021.
高级语言: Python
项目地址: git://github.com/Kinpzz/MSRNet-CVIU.git
创建时间: 2021-03-22T09:20:28Z
项目社区:https://github.com/Kinpzz/MSRNet-CVIU

开源协议:MIT License

下载


MSRNet-CVIU

Instance-Level Salient Object Segmentation

Guanbin Li, Pengxiang Yan, YuanXie, Guisheng Wang, Liang Lin, Yizhou Yu.

Computer Vision and Image Understanding (CVIU), 2021, Elsevier.

[Paper]

Salient Object Detection

MSRNet-MXNet

This code MSNet-MXNet is tested on Ubuntu 16.04, Python=3.7 (via Anaconda3), MXNet=1.3.1, CUDA=9.2.

Install

  1. # install MXNet (refer to your CUDA version)
  2. $ pip install mxnet-cu92==1.3.1
  3. # install others
  4. $ pip install mxboard pyyaml tqdm opencv-python Pillow

Clone this repository with submodules:

  1. git clone --recurse-submodules https://github.com/Kinpzz/MSRNet-CVIU.git

Training

  1. # Training on DUTS-TR for salient object/region detection
  2. $ python train.py --config config/MSRNet_DUTS.yaml

Inference

Download and save model weights in MSRNet-MXNet/models.

  1. # Inference on DUTS-TE for salient object/region detection
  2. # modify the config file to inference on other datasets
  3. $ python test.py --config config/MSRNet_DUTS.yaml

Salient Instance Segmentation

Demo

Run instance_seg/demo.m in MATLAB.
Note that the salient region maps & salient contour maps are predicted by the above-mentioned MSRNet-MXNet fine-tuned on ILSO datasets.

Citation

If you find this work helpful, please consider citing

  1. # CVIU 2021
  2. @article{li2021instance,
  3. title = {Instance-level salient object segmentation},
  4. author = {Li, Guanbin and Yan, Pengxiang and Xie, Yuan and Wang, Guisheng and Lin, Liang and Yu, Yizhou},
  5. journal = {Computer Vision and Image Understanding},
  6. volume = {207},
  7. pages = {103207},
  8. year = {2021},
  9. issn = {1077-3142},
  10. }
  11. # CVPR 2017
  12. @inproceedings{li2017instance,
  13. title={Instance-level salient object segmentation},
  14. author={Li, Guanbin and Xie, Yuan and Lin, Liang and Yu, Yizhou},
  15. booktitle={Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition},
  16. pages={2386--2395},
  17. year={2017}
  18. }