├── README.md ├── cifar_data_hls.py ├── evaluate.py ├── fusion image ├── def_fusion.jpg ├── def_gray.jpg ├── def_low.jpg ├── per_fusion.jpg ├── per_gray.jpg └── per_low.jpg ├── fusion.py ├── fusion_model.py ├── images ├── fusion1.jpg ├── fusion2.jpg ├── ms1.jpg ├── ms2.jpg ├── pan1.jpg └── pan2.jpg ├── saves └── fusion_model │ ├── checkpoint │ ├── model.ckpt.data-00000-of-00001 │ ├── model.ckpt.index │ └── model.ckpt.meta └── train.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VectorFist/CNN-Fusion/HEAD/README.md -------------------------------------------------------------------------------- /cifar_data_hls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VectorFist/CNN-Fusion/HEAD/cifar_data_hls.py -------------------------------------------------------------------------------- /evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VectorFist/CNN-Fusion/HEAD/evaluate.py -------------------------------------------------------------------------------- /fusion image/def_fusion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VectorFist/CNN-Fusion/HEAD/fusion image/def_fusion.jpg -------------------------------------------------------------------------------- /fusion image/def_gray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VectorFist/CNN-Fusion/HEAD/fusion image/def_gray.jpg -------------------------------------------------------------------------------- /fusion image/def_low.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VectorFist/CNN-Fusion/HEAD/fusion image/def_low.jpg -------------------------------------------------------------------------------- /fusion image/per_fusion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VectorFist/CNN-Fusion/HEAD/fusion image/per_fusion.jpg -------------------------------------------------------------------------------- /fusion image/per_gray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VectorFist/CNN-Fusion/HEAD/fusion image/per_gray.jpg -------------------------------------------------------------------------------- /fusion image/per_low.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VectorFist/CNN-Fusion/HEAD/fusion image/per_low.jpg -------------------------------------------------------------------------------- /fusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VectorFist/CNN-Fusion/HEAD/fusion.py -------------------------------------------------------------------------------- /fusion_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VectorFist/CNN-Fusion/HEAD/fusion_model.py -------------------------------------------------------------------------------- /images/fusion1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VectorFist/CNN-Fusion/HEAD/images/fusion1.jpg -------------------------------------------------------------------------------- /images/fusion2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VectorFist/CNN-Fusion/HEAD/images/fusion2.jpg -------------------------------------------------------------------------------- /images/ms1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VectorFist/CNN-Fusion/HEAD/images/ms1.jpg -------------------------------------------------------------------------------- /images/ms2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VectorFist/CNN-Fusion/HEAD/images/ms2.jpg -------------------------------------------------------------------------------- /images/pan1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VectorFist/CNN-Fusion/HEAD/images/pan1.jpg -------------------------------------------------------------------------------- /images/pan2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VectorFist/CNN-Fusion/HEAD/images/pan2.jpg -------------------------------------------------------------------------------- /saves/fusion_model/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VectorFist/CNN-Fusion/HEAD/saves/fusion_model/checkpoint -------------------------------------------------------------------------------- /saves/fusion_model/model.ckpt.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VectorFist/CNN-Fusion/HEAD/saves/fusion_model/model.ckpt.data-00000-of-00001 -------------------------------------------------------------------------------- /saves/fusion_model/model.ckpt.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VectorFist/CNN-Fusion/HEAD/saves/fusion_model/model.ckpt.index -------------------------------------------------------------------------------- /saves/fusion_model/model.ckpt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VectorFist/CNN-Fusion/HEAD/saves/fusion_model/model.ckpt.meta -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VectorFist/CNN-Fusion/HEAD/train.py --------------------------------------------------------------------------------