├── DIM_evaluation_code ├── compute_connectivity_error.m ├── compute_gradient_loss.m ├── compute_mse_loss.m ├── compute_sad_loss.m ├── evaluate.m └── gaussgradient.m ├── LICENSE ├── Nam_et_al.py ├── README.md ├── config └── EyelashNet.toml ├── data_description.md ├── dataloader ├── __init__.py ├── data_generator.py ├── image_file.py └── prefetcher.py ├── eyelash_test.py ├── eyelash_train.py ├── networks ├── __init__.py ├── decoders │ ├── __init__.py │ ├── res_gca_dec.py │ ├── res_shortcut_dec.py │ └── resnet_dec.py ├── encoders │ ├── __init__.py │ ├── res_gca_enc.py │ ├── res_shortcut_enc.py │ └── resnet_enc.py ├── generators.py └── ops.py ├── pics └── results.jpg ├── requirements.txt ├── root_path.py ├── test.sh ├── tester.py ├── train.sh ├── train.txt ├── trainer.py └── utils ├── __init__.py ├── config.py ├── evaluate.py ├── logger.py └── util.py /DIM_evaluation_code/compute_connectivity_error.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinjieXiao/EyelashNet/HEAD/DIM_evaluation_code/compute_connectivity_error.m -------------------------------------------------------------------------------- /DIM_evaluation_code/compute_gradient_loss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinjieXiao/EyelashNet/HEAD/DIM_evaluation_code/compute_gradient_loss.m -------------------------------------------------------------------------------- /DIM_evaluation_code/compute_mse_loss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinjieXiao/EyelashNet/HEAD/DIM_evaluation_code/compute_mse_loss.m -------------------------------------------------------------------------------- /DIM_evaluation_code/compute_sad_loss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinjieXiao/EyelashNet/HEAD/DIM_evaluation_code/compute_sad_loss.m -------------------------------------------------------------------------------- /DIM_evaluation_code/evaluate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinjieXiao/EyelashNet/HEAD/DIM_evaluation_code/evaluate.m -------------------------------------------------------------------------------- /DIM_evaluation_code/gaussgradient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinjieXiao/EyelashNet/HEAD/DIM_evaluation_code/gaussgradient.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinjieXiao/EyelashNet/HEAD/LICENSE -------------------------------------------------------------------------------- /Nam_et_al.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinjieXiao/EyelashNet/HEAD/Nam_et_al.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinjieXiao/EyelashNet/HEAD/README.md -------------------------------------------------------------------------------- /config/EyelashNet.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinjieXiao/EyelashNet/HEAD/config/EyelashNet.toml -------------------------------------------------------------------------------- /data_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinjieXiao/EyelashNet/HEAD/data_description.md -------------------------------------------------------------------------------- /dataloader/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dataloader/data_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinjieXiao/EyelashNet/HEAD/dataloader/data_generator.py -------------------------------------------------------------------------------- /dataloader/image_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinjieXiao/EyelashNet/HEAD/dataloader/image_file.py -------------------------------------------------------------------------------- /dataloader/prefetcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinjieXiao/EyelashNet/HEAD/dataloader/prefetcher.py -------------------------------------------------------------------------------- /eyelash_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinjieXiao/EyelashNet/HEAD/eyelash_test.py -------------------------------------------------------------------------------- /eyelash_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinjieXiao/EyelashNet/HEAD/eyelash_train.py -------------------------------------------------------------------------------- /networks/__init__.py: -------------------------------------------------------------------------------- 1 | from .generators import * -------------------------------------------------------------------------------- /networks/decoders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinjieXiao/EyelashNet/HEAD/networks/decoders/__init__.py -------------------------------------------------------------------------------- /networks/decoders/res_gca_dec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinjieXiao/EyelashNet/HEAD/networks/decoders/res_gca_dec.py -------------------------------------------------------------------------------- /networks/decoders/res_shortcut_dec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinjieXiao/EyelashNet/HEAD/networks/decoders/res_shortcut_dec.py -------------------------------------------------------------------------------- /networks/decoders/resnet_dec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinjieXiao/EyelashNet/HEAD/networks/decoders/resnet_dec.py -------------------------------------------------------------------------------- /networks/encoders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinjieXiao/EyelashNet/HEAD/networks/encoders/__init__.py -------------------------------------------------------------------------------- /networks/encoders/res_gca_enc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinjieXiao/EyelashNet/HEAD/networks/encoders/res_gca_enc.py -------------------------------------------------------------------------------- /networks/encoders/res_shortcut_enc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinjieXiao/EyelashNet/HEAD/networks/encoders/res_shortcut_enc.py -------------------------------------------------------------------------------- /networks/encoders/resnet_enc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinjieXiao/EyelashNet/HEAD/networks/encoders/resnet_enc.py -------------------------------------------------------------------------------- /networks/generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinjieXiao/EyelashNet/HEAD/networks/generators.py -------------------------------------------------------------------------------- /networks/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinjieXiao/EyelashNet/HEAD/networks/ops.py -------------------------------------------------------------------------------- /pics/results.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinjieXiao/EyelashNet/HEAD/pics/results.jpg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinjieXiao/EyelashNet/HEAD/requirements.txt -------------------------------------------------------------------------------- /root_path.py: -------------------------------------------------------------------------------- 1 | ROOT_PATH = "/home/xqj/zhangzr/GCA-Matting-master/" -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinjieXiao/EyelashNet/HEAD/test.sh -------------------------------------------------------------------------------- /tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinjieXiao/EyelashNet/HEAD/tester.py -------------------------------------------------------------------------------- /train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinjieXiao/EyelashNet/HEAD/train.sh -------------------------------------------------------------------------------- /train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinjieXiao/EyelashNet/HEAD/train.txt -------------------------------------------------------------------------------- /trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinjieXiao/EyelashNet/HEAD/trainer.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinjieXiao/EyelashNet/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinjieXiao/EyelashNet/HEAD/utils/config.py -------------------------------------------------------------------------------- /utils/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinjieXiao/EyelashNet/HEAD/utils/evaluate.py -------------------------------------------------------------------------------- /utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinjieXiao/EyelashNet/HEAD/utils/logger.py -------------------------------------------------------------------------------- /utils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QinjieXiao/EyelashNet/HEAD/utils/util.py --------------------------------------------------------------------------------