├── README.md ├── backBone ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── densenet.cpython-37.pyc │ ├── mobilenet.cpython-37.pyc │ ├── resnet.cpython-37.pyc │ ├── vgg.cpython-37.pyc │ └── xception.cpython-37.pyc ├── densenet.py ├── mobilenet.py ├── resnet.py ├── vgg.py └── xception.py ├── backBone_pretrained_weights └── densenet121_weights_tf_dim_ordering_tf_kernels_notop.h5 ├── config.py ├── data ├── image_A │ └── testfile ├── train │ ├── image │ │ └── 1.tif │ └── label │ │ └── 1.png └── val │ ├── image │ └── 11.tif │ └── label │ └── 11.png ├── models ├── Custom_net.py ├── __init__.py ├── __pycache__ │ ├── Custom_net.cpython-37.pyc │ ├── __init__.cpython-37.pyc │ ├── bisegnet.cpython-37.pyc │ ├── deeplab_v3.cpython-37.pyc │ ├── deeplab_v3_plus.cpython-37.pyc │ ├── denseaspp.cpython-37.pyc │ ├── fcn.cpython-37.pyc │ ├── network.cpython-37.pyc │ ├── pan.cpython-37.pyc │ ├── pspnet.cpython-37.pyc │ ├── refinenet.cpython-37.pyc │ ├── segnet.cpython-37.pyc │ └── unet.cpython-37.pyc ├── bisegnet.py ├── deeplab_v3.py ├── deeplab_v3_plus.py ├── denseaspp.py ├── fcn.py ├── network.py ├── pan.py ├── pspnet.py ├── refinenet.py ├── segnet.py └── unet.py ├── predict.py ├── tools ├── Block_tricks.py ├── __pycache__ │ ├── Block_tricks.cpython-37.pyc │ ├── callbacks.cpython-37.pyc │ ├── dataloader.cpython-37.pyc │ ├── layers.cpython-37.pyc │ ├── learning_rate.cpython-37.pyc │ └── metrics.cpython-37.pyc ├── callbacks.py ├── dataloader.py ├── layers.py ├── learning_rate.py ├── metrics.py └── split_val_data_from_train.py ├── train.py ├── train_custom.py └── train_unet.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/README.md -------------------------------------------------------------------------------- /backBone/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/backBone/__init__.py -------------------------------------------------------------------------------- /backBone/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/backBone/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /backBone/__pycache__/densenet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/backBone/__pycache__/densenet.cpython-37.pyc -------------------------------------------------------------------------------- /backBone/__pycache__/mobilenet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/backBone/__pycache__/mobilenet.cpython-37.pyc -------------------------------------------------------------------------------- /backBone/__pycache__/resnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/backBone/__pycache__/resnet.cpython-37.pyc -------------------------------------------------------------------------------- /backBone/__pycache__/vgg.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/backBone/__pycache__/vgg.cpython-37.pyc -------------------------------------------------------------------------------- /backBone/__pycache__/xception.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/backBone/__pycache__/xception.cpython-37.pyc -------------------------------------------------------------------------------- /backBone/densenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/backBone/densenet.py -------------------------------------------------------------------------------- /backBone/mobilenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/backBone/mobilenet.py -------------------------------------------------------------------------------- /backBone/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/backBone/resnet.py -------------------------------------------------------------------------------- /backBone/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/backBone/vgg.py -------------------------------------------------------------------------------- /backBone/xception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/backBone/xception.py -------------------------------------------------------------------------------- /backBone_pretrained_weights/densenet121_weights_tf_dim_ordering_tf_kernels_notop.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/backBone_pretrained_weights/densenet121_weights_tf_dim_ordering_tf_kernels_notop.h5 -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/config.py -------------------------------------------------------------------------------- /data/image_A/testfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/train/image/1.tif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/train/label/1.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/val/image/11.tif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/val/label/11.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/Custom_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/models/Custom_net.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/__pycache__/Custom_net.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/models/__pycache__/Custom_net.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/models/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/bisegnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/models/__pycache__/bisegnet.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/deeplab_v3.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/models/__pycache__/deeplab_v3.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/deeplab_v3_plus.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/models/__pycache__/deeplab_v3_plus.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/denseaspp.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/models/__pycache__/denseaspp.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/fcn.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/models/__pycache__/fcn.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/network.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/models/__pycache__/network.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/pan.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/models/__pycache__/pan.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/pspnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/models/__pycache__/pspnet.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/refinenet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/models/__pycache__/refinenet.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/segnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/models/__pycache__/segnet.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/unet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/models/__pycache__/unet.cpython-37.pyc -------------------------------------------------------------------------------- /models/bisegnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/models/bisegnet.py -------------------------------------------------------------------------------- /models/deeplab_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/models/deeplab_v3.py -------------------------------------------------------------------------------- /models/deeplab_v3_plus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/models/deeplab_v3_plus.py -------------------------------------------------------------------------------- /models/denseaspp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/models/denseaspp.py -------------------------------------------------------------------------------- /models/fcn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/models/fcn.py -------------------------------------------------------------------------------- /models/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/models/network.py -------------------------------------------------------------------------------- /models/pan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/models/pan.py -------------------------------------------------------------------------------- /models/pspnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/models/pspnet.py -------------------------------------------------------------------------------- /models/refinenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/models/refinenet.py -------------------------------------------------------------------------------- /models/segnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/models/segnet.py -------------------------------------------------------------------------------- /models/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/models/unet.py -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/predict.py -------------------------------------------------------------------------------- /tools/Block_tricks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/tools/Block_tricks.py -------------------------------------------------------------------------------- /tools/__pycache__/Block_tricks.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/tools/__pycache__/Block_tricks.cpython-37.pyc -------------------------------------------------------------------------------- /tools/__pycache__/callbacks.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/tools/__pycache__/callbacks.cpython-37.pyc -------------------------------------------------------------------------------- /tools/__pycache__/dataloader.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/tools/__pycache__/dataloader.cpython-37.pyc -------------------------------------------------------------------------------- /tools/__pycache__/layers.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/tools/__pycache__/layers.cpython-37.pyc -------------------------------------------------------------------------------- /tools/__pycache__/learning_rate.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/tools/__pycache__/learning_rate.cpython-37.pyc -------------------------------------------------------------------------------- /tools/__pycache__/metrics.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/tools/__pycache__/metrics.cpython-37.pyc -------------------------------------------------------------------------------- /tools/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/tools/callbacks.py -------------------------------------------------------------------------------- /tools/dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/tools/dataloader.py -------------------------------------------------------------------------------- /tools/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/tools/layers.py -------------------------------------------------------------------------------- /tools/learning_rate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/tools/learning_rate.py -------------------------------------------------------------------------------- /tools/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/tools/metrics.py -------------------------------------------------------------------------------- /tools/split_val_data_from_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/tools/split_val_data_from_train.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/train.py -------------------------------------------------------------------------------- /train_custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/train_custom.py -------------------------------------------------------------------------------- /train_unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TachibanaYoshino/Remote-sensing-image-semantic-segmentation-tf2/HEAD/train_unet.py --------------------------------------------------------------------------------