├── .gitignore ├── Data ├── ECNN Network.PNG ├── ECNN flowhart of fusion of two images.PNG ├── The initial and final segmentation map (with and without post-processing) of the proposed method of ECNN and the others for “Flower ” image..PNG └── The schematic diagram of generating three datasets according to the proposed patch feeding.PNG ├── ECNN_test.ipynb ├── ECNN_train.ipynb ├── ECNN_trained_network_wights.pth ├── LICENSE ├── README.md ├── creat_dataset.m ├── flower1.tif ├── flower2.tif ├── lytro-03-A.jpg └── lytro-03-B.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafaaminnaji/ECNN/HEAD/.gitignore -------------------------------------------------------------------------------- /Data/ECNN Network.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafaaminnaji/ECNN/HEAD/Data/ECNN Network.PNG -------------------------------------------------------------------------------- /Data/ECNN flowhart of fusion of two images.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafaaminnaji/ECNN/HEAD/Data/ECNN flowhart of fusion of two images.PNG -------------------------------------------------------------------------------- /Data/The initial and final segmentation map (with and without post-processing) of the proposed method of ECNN and the others for “Flower ” image..PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafaaminnaji/ECNN/HEAD/Data/The initial and final segmentation map (with and without post-processing) of the proposed method of ECNN and the others for “Flower ” image..PNG -------------------------------------------------------------------------------- /Data/The schematic diagram of generating three datasets according to the proposed patch feeding.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafaaminnaji/ECNN/HEAD/Data/The schematic diagram of generating three datasets according to the proposed patch feeding.PNG -------------------------------------------------------------------------------- /ECNN_test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafaaminnaji/ECNN/HEAD/ECNN_test.ipynb -------------------------------------------------------------------------------- /ECNN_train.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafaaminnaji/ECNN/HEAD/ECNN_train.ipynb -------------------------------------------------------------------------------- /ECNN_trained_network_wights.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafaaminnaji/ECNN/HEAD/ECNN_trained_network_wights.pth -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafaaminnaji/ECNN/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafaaminnaji/ECNN/HEAD/README.md -------------------------------------------------------------------------------- /creat_dataset.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafaaminnaji/ECNN/HEAD/creat_dataset.m -------------------------------------------------------------------------------- /flower1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafaaminnaji/ECNN/HEAD/flower1.tif -------------------------------------------------------------------------------- /flower2.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafaaminnaji/ECNN/HEAD/flower2.tif -------------------------------------------------------------------------------- /lytro-03-A.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafaaminnaji/ECNN/HEAD/lytro-03-A.jpg -------------------------------------------------------------------------------- /lytro-03-B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafaaminnaji/ECNN/HEAD/lytro-03-B.jpg --------------------------------------------------------------------------------