├── .DS_Store ├── E_F_measure.png ├── README.md ├── convert_rgb2gray.m ├── data.py ├── data └── related_data ├── gamma_expansion.m ├── generate_gt_mask_from_scribble.m ├── model ├── __init__.py ├── network_structure ├── vgg.py └── vgg_models.py ├── models └── trained_model ├── overview.png ├── results.png ├── scribble_show.png ├── smoothness ├── __init__.py └── smoothness_loss ├── temp └── temp_dir ├── test.py ├── train.py └── utils.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingZhang617/Scribble_Saliency/HEAD/.DS_Store -------------------------------------------------------------------------------- /E_F_measure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingZhang617/Scribble_Saliency/HEAD/E_F_measure.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingZhang617/Scribble_Saliency/HEAD/README.md -------------------------------------------------------------------------------- /convert_rgb2gray.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingZhang617/Scribble_Saliency/HEAD/convert_rgb2gray.m -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingZhang617/Scribble_Saliency/HEAD/data.py -------------------------------------------------------------------------------- /data/related_data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingZhang617/Scribble_Saliency/HEAD/data/related_data -------------------------------------------------------------------------------- /gamma_expansion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingZhang617/Scribble_Saliency/HEAD/gamma_expansion.m -------------------------------------------------------------------------------- /generate_gt_mask_from_scribble.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingZhang617/Scribble_Saliency/HEAD/generate_gt_mask_from_scribble.m -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /model/network_structure: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /model/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingZhang617/Scribble_Saliency/HEAD/model/vgg.py -------------------------------------------------------------------------------- /model/vgg_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingZhang617/Scribble_Saliency/HEAD/model/vgg_models.py -------------------------------------------------------------------------------- /models/trained_model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingZhang617/Scribble_Saliency/HEAD/models/trained_model -------------------------------------------------------------------------------- /overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingZhang617/Scribble_Saliency/HEAD/overview.png -------------------------------------------------------------------------------- /results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingZhang617/Scribble_Saliency/HEAD/results.png -------------------------------------------------------------------------------- /scribble_show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingZhang617/Scribble_Saliency/HEAD/scribble_show.png -------------------------------------------------------------------------------- /smoothness/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingZhang617/Scribble_Saliency/HEAD/smoothness/__init__.py -------------------------------------------------------------------------------- /smoothness/smoothness_loss: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /temp/temp_dir: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingZhang617/Scribble_Saliency/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingZhang617/Scribble_Saliency/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingZhang617/Scribble_Saliency/HEAD/utils.py --------------------------------------------------------------------------------