├── GIF.py ├── LICENSE ├── README.md ├── ckp ├── mef.pth ├── mff.pth └── vif.pth ├── config ├── config_1.py ├── config_2.py └── config_3.py ├── images ├── dataset │ └── MEF │ │ └── MEFB │ │ ├── 507 │ │ ├── 507_A.png │ │ └── 507_B.png │ │ └── AirBellowsGap │ │ ├── AirBellowsGap_A.png │ │ └── AirBellowsGap_B.png └── fused │ └── mef.pth │ ├── 507_FFMEF.png │ └── AirBellowsGap_FFMEF.png ├── model ├── Blocks.py └── FFMEF.py ├── myUtils.py ├── output ├── job1 │ ├── checkpoints │ │ └── 1.txt │ ├── log │ │ └── 1.txt │ └── temp │ │ └── 1.txt ├── job2 │ ├── checkpoints │ │ └── 1.txt │ ├── log │ │ └── 1.txt │ └── temp │ │ └── 1.txt └── job3 │ ├── checkpoints │ └── 1.txt │ ├── log │ └── 1.txt │ └── temp │ └── 1.txt ├── test.py └── train.py /GIF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keviner1/FFMEF/HEAD/GIF.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keviner1/FFMEF/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keviner1/FFMEF/HEAD/README.md -------------------------------------------------------------------------------- /ckp/mef.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keviner1/FFMEF/HEAD/ckp/mef.pth -------------------------------------------------------------------------------- /ckp/mff.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keviner1/FFMEF/HEAD/ckp/mff.pth -------------------------------------------------------------------------------- /ckp/vif.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keviner1/FFMEF/HEAD/ckp/vif.pth -------------------------------------------------------------------------------- /config/config_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keviner1/FFMEF/HEAD/config/config_1.py -------------------------------------------------------------------------------- /config/config_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keviner1/FFMEF/HEAD/config/config_2.py -------------------------------------------------------------------------------- /config/config_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keviner1/FFMEF/HEAD/config/config_3.py -------------------------------------------------------------------------------- /images/dataset/MEF/MEFB/507/507_A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keviner1/FFMEF/HEAD/images/dataset/MEF/MEFB/507/507_A.png -------------------------------------------------------------------------------- /images/dataset/MEF/MEFB/507/507_B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keviner1/FFMEF/HEAD/images/dataset/MEF/MEFB/507/507_B.png -------------------------------------------------------------------------------- /images/dataset/MEF/MEFB/AirBellowsGap/AirBellowsGap_A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keviner1/FFMEF/HEAD/images/dataset/MEF/MEFB/AirBellowsGap/AirBellowsGap_A.png -------------------------------------------------------------------------------- /images/dataset/MEF/MEFB/AirBellowsGap/AirBellowsGap_B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keviner1/FFMEF/HEAD/images/dataset/MEF/MEFB/AirBellowsGap/AirBellowsGap_B.png -------------------------------------------------------------------------------- /images/fused/mef.pth/507_FFMEF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keviner1/FFMEF/HEAD/images/fused/mef.pth/507_FFMEF.png -------------------------------------------------------------------------------- /images/fused/mef.pth/AirBellowsGap_FFMEF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keviner1/FFMEF/HEAD/images/fused/mef.pth/AirBellowsGap_FFMEF.png -------------------------------------------------------------------------------- /model/Blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keviner1/FFMEF/HEAD/model/Blocks.py -------------------------------------------------------------------------------- /model/FFMEF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keviner1/FFMEF/HEAD/model/FFMEF.py -------------------------------------------------------------------------------- /myUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keviner1/FFMEF/HEAD/myUtils.py -------------------------------------------------------------------------------- /output/job1/checkpoints/1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /output/job1/log/1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /output/job1/temp/1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /output/job2/checkpoints/1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /output/job2/log/1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /output/job2/temp/1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /output/job3/checkpoints/1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /output/job3/log/1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /output/job3/temp/1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keviner1/FFMEF/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keviner1/FFMEF/HEAD/train.py --------------------------------------------------------------------------------