├── .idea ├── .gitignore ├── SPD_MEF.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── LICENSE ├── README.md ├── input_seqs ├── 1.png ├── 2.png └── 3.png └── spd_mef.py /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jensen-JZ/SPD_MEF/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/SPD_MEF.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jensen-JZ/SPD_MEF/HEAD/.idea/SPD_MEF.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jensen-JZ/SPD_MEF/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jensen-JZ/SPD_MEF/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jensen-JZ/SPD_MEF/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jensen-JZ/SPD_MEF/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jensen-JZ/SPD_MEF/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jensen-JZ/SPD_MEF/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jensen-JZ/SPD_MEF/HEAD/README.md -------------------------------------------------------------------------------- /input_seqs/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jensen-JZ/SPD_MEF/HEAD/input_seqs/1.png -------------------------------------------------------------------------------- /input_seqs/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jensen-JZ/SPD_MEF/HEAD/input_seqs/2.png -------------------------------------------------------------------------------- /input_seqs/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jensen-JZ/SPD_MEF/HEAD/input_seqs/3.png -------------------------------------------------------------------------------- /spd_mef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jensen-JZ/SPD_MEF/HEAD/spd_mef.py --------------------------------------------------------------------------------