├── LICENSE ├── README.md ├── codes ├── Evaluation.py ├── Evaluation_SAIDataset.py ├── Event_Dataset.py ├── Networks │ ├── Hybrid.py │ ├── Refocus.py │ └── networks.py ├── Preprocess.py ├── Test_AutoRefocus.py ├── Test_ManualRefocus.py └── utils.py ├── img ├── data_format.png ├── pipeline.png └── scene.jpg └── requirements.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvs-whu/E-SAI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvs-whu/E-SAI/HEAD/README.md -------------------------------------------------------------------------------- /codes/Evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvs-whu/E-SAI/HEAD/codes/Evaluation.py -------------------------------------------------------------------------------- /codes/Evaluation_SAIDataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvs-whu/E-SAI/HEAD/codes/Evaluation_SAIDataset.py -------------------------------------------------------------------------------- /codes/Event_Dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvs-whu/E-SAI/HEAD/codes/Event_Dataset.py -------------------------------------------------------------------------------- /codes/Networks/Hybrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvs-whu/E-SAI/HEAD/codes/Networks/Hybrid.py -------------------------------------------------------------------------------- /codes/Networks/Refocus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvs-whu/E-SAI/HEAD/codes/Networks/Refocus.py -------------------------------------------------------------------------------- /codes/Networks/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvs-whu/E-SAI/HEAD/codes/Networks/networks.py -------------------------------------------------------------------------------- /codes/Preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvs-whu/E-SAI/HEAD/codes/Preprocess.py -------------------------------------------------------------------------------- /codes/Test_AutoRefocus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvs-whu/E-SAI/HEAD/codes/Test_AutoRefocus.py -------------------------------------------------------------------------------- /codes/Test_ManualRefocus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvs-whu/E-SAI/HEAD/codes/Test_ManualRefocus.py -------------------------------------------------------------------------------- /codes/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvs-whu/E-SAI/HEAD/codes/utils.py -------------------------------------------------------------------------------- /img/data_format.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvs-whu/E-SAI/HEAD/img/data_format.png -------------------------------------------------------------------------------- /img/pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvs-whu/E-SAI/HEAD/img/pipeline.png -------------------------------------------------------------------------------- /img/scene.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvs-whu/E-SAI/HEAD/img/scene.jpg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvs-whu/E-SAI/HEAD/requirements.txt --------------------------------------------------------------------------------