├── 3D_DenseNet_IN.py ├── 3D_DenseNet_UP.py ├── Classification Maps ├── IN_classification_maps.py └── UP_classification_maps.py ├── Load_Models ├── Load_IN.py └── Load_UP.py ├── README.md ├── Utils ├── Real3D_conv.py ├── averageAccuracy.py ├── cnn_3D_IN.py ├── cnn_3D_UP.py ├── densenet.py ├── densenet_IN.py ├── densenet_IN_no_bottleneck_layer.py ├── densenet_UP.py ├── doPCA.py ├── modelStatsRecord.py ├── normalization.py ├── sampleFixNum.py └── zeroPadding.py └── models ├── Indian_best_3D_DenseNet_1.hdf5 ├── UP_best_3D_DenseNet_1.hdf5 ├── UP_best_3D_DenseNet_2.hdf5 ├── UP_best_3D_DenseNet_3.hdf5 └── UP_best_RES_3D_DenseNet_1.hdf5 /3D_DenseNet_IN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeguandong/3D-DenseNet-for-HSI/HEAD/3D_DenseNet_IN.py -------------------------------------------------------------------------------- /3D_DenseNet_UP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeguandong/3D-DenseNet-for-HSI/HEAD/3D_DenseNet_UP.py -------------------------------------------------------------------------------- /Classification Maps/IN_classification_maps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeguandong/3D-DenseNet-for-HSI/HEAD/Classification Maps/IN_classification_maps.py -------------------------------------------------------------------------------- /Classification Maps/UP_classification_maps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeguandong/3D-DenseNet-for-HSI/HEAD/Classification Maps/UP_classification_maps.py -------------------------------------------------------------------------------- /Load_Models/Load_IN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeguandong/3D-DenseNet-for-HSI/HEAD/Load_Models/Load_IN.py -------------------------------------------------------------------------------- /Load_Models/Load_UP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeguandong/3D-DenseNet-for-HSI/HEAD/Load_Models/Load_UP.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeguandong/3D-DenseNet-for-HSI/HEAD/README.md -------------------------------------------------------------------------------- /Utils/Real3D_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeguandong/3D-DenseNet-for-HSI/HEAD/Utils/Real3D_conv.py -------------------------------------------------------------------------------- /Utils/averageAccuracy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeguandong/3D-DenseNet-for-HSI/HEAD/Utils/averageAccuracy.py -------------------------------------------------------------------------------- /Utils/cnn_3D_IN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeguandong/3D-DenseNet-for-HSI/HEAD/Utils/cnn_3D_IN.py -------------------------------------------------------------------------------- /Utils/cnn_3D_UP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeguandong/3D-DenseNet-for-HSI/HEAD/Utils/cnn_3D_UP.py -------------------------------------------------------------------------------- /Utils/densenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeguandong/3D-DenseNet-for-HSI/HEAD/Utils/densenet.py -------------------------------------------------------------------------------- /Utils/densenet_IN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeguandong/3D-DenseNet-for-HSI/HEAD/Utils/densenet_IN.py -------------------------------------------------------------------------------- /Utils/densenet_IN_no_bottleneck_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeguandong/3D-DenseNet-for-HSI/HEAD/Utils/densenet_IN_no_bottleneck_layer.py -------------------------------------------------------------------------------- /Utils/densenet_UP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeguandong/3D-DenseNet-for-HSI/HEAD/Utils/densenet_UP.py -------------------------------------------------------------------------------- /Utils/doPCA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeguandong/3D-DenseNet-for-HSI/HEAD/Utils/doPCA.py -------------------------------------------------------------------------------- /Utils/modelStatsRecord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeguandong/3D-DenseNet-for-HSI/HEAD/Utils/modelStatsRecord.py -------------------------------------------------------------------------------- /Utils/normalization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeguandong/3D-DenseNet-for-HSI/HEAD/Utils/normalization.py -------------------------------------------------------------------------------- /Utils/sampleFixNum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeguandong/3D-DenseNet-for-HSI/HEAD/Utils/sampleFixNum.py -------------------------------------------------------------------------------- /Utils/zeroPadding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeguandong/3D-DenseNet-for-HSI/HEAD/Utils/zeroPadding.py -------------------------------------------------------------------------------- /models/Indian_best_3D_DenseNet_1.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeguandong/3D-DenseNet-for-HSI/HEAD/models/Indian_best_3D_DenseNet_1.hdf5 -------------------------------------------------------------------------------- /models/UP_best_3D_DenseNet_1.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeguandong/3D-DenseNet-for-HSI/HEAD/models/UP_best_3D_DenseNet_1.hdf5 -------------------------------------------------------------------------------- /models/UP_best_3D_DenseNet_2.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeguandong/3D-DenseNet-for-HSI/HEAD/models/UP_best_3D_DenseNet_2.hdf5 -------------------------------------------------------------------------------- /models/UP_best_3D_DenseNet_3.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeguandong/3D-DenseNet-for-HSI/HEAD/models/UP_best_3D_DenseNet_3.hdf5 -------------------------------------------------------------------------------- /models/UP_best_RES_3D_DenseNet_1.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeguandong/3D-DenseNet-for-HSI/HEAD/models/UP_best_RES_3D_DenseNet_1.hdf5 --------------------------------------------------------------------------------