├── Data_adobe ├── compose.py ├── prepare.sh ├── test_data_list.txt └── train_data_list.txt ├── README.md ├── data_loader.py ├── functions.py ├── loss_functions.py ├── networks.py ├── prepare_real.py ├── requirements.txt ├── sample_data ├── background │ ├── 0001.png │ └── 0002.png └── input │ ├── 0001_back.png │ ├── 0001_img.png │ ├── 0500_back.png │ ├── 0500_img.png │ ├── 1000_back.png │ ├── 1000_img.png │ ├── 1500_back.png │ └── 1500_img.png ├── test_background-matting_image.py ├── test_pre_process.m ├── test_pre_process.py ├── test_pre_process_video.m ├── test_pre_process_video.py ├── test_segmentation_deeplab.py ├── train_adobe.py └── train_real_fixed.py /Data_adobe/compose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senguptaumd/Background-Matting/HEAD/Data_adobe/compose.py -------------------------------------------------------------------------------- /Data_adobe/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senguptaumd/Background-Matting/HEAD/Data_adobe/prepare.sh -------------------------------------------------------------------------------- /Data_adobe/test_data_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senguptaumd/Background-Matting/HEAD/Data_adobe/test_data_list.txt -------------------------------------------------------------------------------- /Data_adobe/train_data_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senguptaumd/Background-Matting/HEAD/Data_adobe/train_data_list.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senguptaumd/Background-Matting/HEAD/README.md -------------------------------------------------------------------------------- /data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senguptaumd/Background-Matting/HEAD/data_loader.py -------------------------------------------------------------------------------- /functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senguptaumd/Background-Matting/HEAD/functions.py -------------------------------------------------------------------------------- /loss_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senguptaumd/Background-Matting/HEAD/loss_functions.py -------------------------------------------------------------------------------- /networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senguptaumd/Background-Matting/HEAD/networks.py -------------------------------------------------------------------------------- /prepare_real.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senguptaumd/Background-Matting/HEAD/prepare_real.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senguptaumd/Background-Matting/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample_data/background/0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senguptaumd/Background-Matting/HEAD/sample_data/background/0001.png -------------------------------------------------------------------------------- /sample_data/background/0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senguptaumd/Background-Matting/HEAD/sample_data/background/0002.png -------------------------------------------------------------------------------- /sample_data/input/0001_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senguptaumd/Background-Matting/HEAD/sample_data/input/0001_back.png -------------------------------------------------------------------------------- /sample_data/input/0001_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senguptaumd/Background-Matting/HEAD/sample_data/input/0001_img.png -------------------------------------------------------------------------------- /sample_data/input/0500_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senguptaumd/Background-Matting/HEAD/sample_data/input/0500_back.png -------------------------------------------------------------------------------- /sample_data/input/0500_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senguptaumd/Background-Matting/HEAD/sample_data/input/0500_img.png -------------------------------------------------------------------------------- /sample_data/input/1000_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senguptaumd/Background-Matting/HEAD/sample_data/input/1000_back.png -------------------------------------------------------------------------------- /sample_data/input/1000_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senguptaumd/Background-Matting/HEAD/sample_data/input/1000_img.png -------------------------------------------------------------------------------- /sample_data/input/1500_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senguptaumd/Background-Matting/HEAD/sample_data/input/1500_back.png -------------------------------------------------------------------------------- /sample_data/input/1500_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senguptaumd/Background-Matting/HEAD/sample_data/input/1500_img.png -------------------------------------------------------------------------------- /test_background-matting_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senguptaumd/Background-Matting/HEAD/test_background-matting_image.py -------------------------------------------------------------------------------- /test_pre_process.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senguptaumd/Background-Matting/HEAD/test_pre_process.m -------------------------------------------------------------------------------- /test_pre_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senguptaumd/Background-Matting/HEAD/test_pre_process.py -------------------------------------------------------------------------------- /test_pre_process_video.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senguptaumd/Background-Matting/HEAD/test_pre_process_video.m -------------------------------------------------------------------------------- /test_pre_process_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senguptaumd/Background-Matting/HEAD/test_pre_process_video.py -------------------------------------------------------------------------------- /test_segmentation_deeplab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senguptaumd/Background-Matting/HEAD/test_segmentation_deeplab.py -------------------------------------------------------------------------------- /train_adobe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senguptaumd/Background-Matting/HEAD/train_adobe.py -------------------------------------------------------------------------------- /train_real_fixed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senguptaumd/Background-Matting/HEAD/train_real_fixed.py --------------------------------------------------------------------------------