├── .idea ├── building-extraction.iml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── PostProcessWatershed.py ├── README.md ├── Redundancy_cropUtil.py ├── Redundancy_predict_3c.py ├── compute_metrics.py ├── data ├── train_images │ ├── Subset1_img__0.png │ ├── Subset1_img__1.png │ ├── Subset1_img__2.png │ ├── Subset1_img__3.png │ ├── Subset1_img__4.png │ ├── Subset1_img__5.png │ ├── Subset1_img__6.png │ ├── Subset1_img__7.png │ ├── Subset1_img__8.png │ └── Subset1_img__9.png └── train_labels │ ├── Subset1_img__0.png │ ├── Subset1_img__1.png │ ├── Subset1_img__2.png │ ├── Subset1_img__3.png │ ├── Subset1_img__4.png │ ├── Subset1_img__5.png │ ├── Subset1_img__6.png │ ├── Subset1_img__7.png │ ├── Subset1_img__8.png │ └── Subset1_img__9.png ├── datasets2.py ├── imgaug ├── DejaVuSans.ttf ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── dtypes.cpython-37.pyc │ ├── imgaug.cpython-37.pyc │ └── parameters.cpython-37.pyc ├── augmentables │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── batches.cpython-37.pyc │ │ ├── bbs.cpython-37.pyc │ │ ├── heatmaps.cpython-37.pyc │ │ ├── kps.cpython-37.pyc │ │ ├── lines.cpython-37.pyc │ │ ├── normalization.cpython-37.pyc │ │ ├── polys.cpython-37.pyc │ │ ├── segmaps.cpython-37.pyc │ │ └── utils.cpython-37.pyc │ ├── batches.py │ ├── bbs.py │ ├── heatmaps.py │ ├── kps.py │ ├── lines.py │ ├── normalization.py │ ├── polys.py │ ├── segmaps.py │ └── utils.py ├── augmenters │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── arithmetic.cpython-37.pyc │ │ ├── blend.cpython-37.pyc │ │ ├── blur.cpython-37.pyc │ │ ├── color.cpython-37.pyc │ │ ├── contrast.cpython-37.pyc │ │ ├── convolutional.cpython-37.pyc │ │ ├── edges.cpython-37.pyc │ │ ├── flip.cpython-37.pyc │ │ ├── geometric.cpython-37.pyc │ │ ├── meta.cpython-37.pyc │ │ ├── pooling.cpython-37.pyc │ │ ├── segmentation.cpython-37.pyc │ │ ├── size.cpython-37.pyc │ │ └── weather.cpython-37.pyc │ ├── arithmetic.py │ ├── blend.py │ ├── blur.py │ ├── color.py │ ├── contrast.py │ ├── convolutional.py │ ├── edges.py │ ├── flip.py │ ├── geometric.py │ ├── meta.py │ ├── overlay.py │ ├── pooling.py │ ├── segmentation.py │ ├── size.py │ └── weather.py ├── dtypes.py ├── external │ ├── README.md │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ └── opensimplex.cpython-37.pyc │ ├── opensimplex.py │ ├── poly_point_isect_py2py3.py │ └── poly_point_isect_py3.py.bak ├── imgaug.py ├── multicore.py ├── parameters.py ├── quokka.jpg ├── quokka_annotations.json ├── quokka_depth_map_halfres.png └── testutils.py ├── models ├── Aspp.py ├── DAF.py ├── YpUnet.py ├── YpUnet_AG_hnn234.py ├── YpUnet_hnn_AG.py ├── __init__.py ├── __pycache__ │ ├── Aspp.cpython-37.pyc │ ├── YpUnet.cpython-37.pyc │ ├── YpUnet_AG_hnn234.cpython-37.pyc │ ├── YpUnet_hnn_AG.cpython-37.pyc │ └── __init__.cpython-37.pyc ├── deeplab │ ├── .deeplab.py.swp │ ├── __init__.py │ ├── aspp.py │ ├── backbone │ │ ├── __init__.py │ │ ├── drn.py │ │ ├── mobilenet.py │ │ ├── resnet.py │ │ └── xception.py │ ├── decoder.py │ ├── deeplab.py │ └── sync_batchnorm │ │ ├── __init__.py │ │ ├── batchnorm.py │ │ ├── comm.py │ │ ├── replicate.py │ │ └── unittest.py ├── lib │ └── RoIAlign │ │ ├── README.md │ │ ├── build │ │ └── lib │ │ │ └── roi_align │ │ │ ├── _ext │ │ │ └── crop_and_resize │ │ │ │ ├── __init__.py │ │ │ │ └── _crop_and_resize.so │ │ │ ├── build.py │ │ │ ├── crop_and_resize.py │ │ │ └── roi_align.py │ │ ├── dist │ │ └── roi_align-0.0.1-py3.6.egg │ │ ├── install.sh │ │ ├── roi_align.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── requires.txt │ │ └── top_level.txt │ │ ├── roi_align │ │ ├── _ext │ │ │ └── crop_and_resize │ │ │ │ ├── __init__.py │ │ │ │ └── _crop_and_resize.so │ │ ├── build.py │ │ ├── crop_and_resize.py │ │ ├── roi_align.py │ │ └── src │ │ │ ├── crop_and_resize.c │ │ │ ├── crop_and_resize.h │ │ │ ├── crop_and_resize_gpu.c │ │ │ ├── crop_and_resize_gpu.h │ │ │ └── cuda │ │ │ ├── crop_and_resize_kernel.cu │ │ │ ├── crop_and_resize_kernel.cu.o │ │ │ └── crop_and_resize_kernel.h │ │ ├── setup.py │ │ ├── test.sh │ │ └── tests │ │ ├── crop_and_resize_example.py │ │ ├── images │ │ ├── choco.png │ │ └── snow.png │ │ ├── test.py │ │ └── test2.py ├── model.py ├── modelzoo │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── adaptive_avgmax_pool.cpython-37.pyc │ │ ├── convert_from_mxnet.cpython-37.pyc │ │ ├── dpn.cpython-37.pyc │ │ ├── efficientNet.cpython-37.pyc │ │ ├── inceptionV4.cpython-37.pyc │ │ ├── inceptionresnetv2.cpython-37.pyc │ │ ├── resnet.cpython-37.pyc │ │ ├── senet.cpython-37.pyc │ │ ├── senet2.cpython-37.pyc │ │ ├── utils.cpython-37.pyc │ │ └── xception.cpython-37.pyc │ ├── adaptive_avgmax_pool.py │ ├── convert_from_mxnet.py │ ├── dpn.py │ ├── dpnv2.py │ ├── efficientNet.py │ ├── inceptionV4.py │ ├── inceptionresnetv2.py │ ├── resnet.py │ ├── senet.py │ ├── senet2.py │ ├── utils.py │ └── xception.py ├── modules │ ├── __init__.py │ ├── bn.py │ ├── functions.py │ ├── misc.py │ ├── residual.py │ ├── src │ │ ├── common.h │ │ ├── inplace_abn.cpp │ │ ├── inplace_abn.h │ │ ├── inplace_abn_cpu.cpp │ │ └── inplace_abn_cuda.cu │ └── wider_resnet.py ├── myUnet.py ├── network.py ├── ternausnets.py ├── unet │ ├── YpUnet.py │ ├── YpUnet2.py │ ├── YpUnet_ASPP.py │ ├── YpUnet_CBAM.py │ ├── YpUnet_CBAM_AG.py │ ├── YpUnet_CBAM_AG2.py │ ├── YpUnet_CBAM_AG_BR.py │ ├── YpUnet_CBAM_BR.py │ ├── YpUnet_CBAM_BR2.py │ ├── YpUnet_CBAM_BR3.py │ ├── YpUnet_CBAM_GAM.py │ ├── YpUnet_CBAM_GCN.py │ ├── YpUnet_FPN.py │ ├── YpUnet_FPN2.py │ ├── YpUnet_HNN.py │ ├── YpUnet_SE.py │ ├── YpUnet_SELoss.py │ ├── YpUnet_dc.py │ ├── YpUnet_hdc.py │ ├── __init__.py │ ├── unet.py │ ├── unet2.py │ ├── unet_4c.py │ ├── unet_dsm.py │ └── unet_models.py └── unet256 │ ├── YpUnet.py │ ├── YpUnet_AG.py │ ├── YpUnet_AG_hnn234.py │ ├── YpUnet_ASPP.py │ ├── YpUnet_hnn.py │ ├── YpUnet_hnn1234.py │ ├── YpUnet_hnn1234V2.py │ ├── YpUnet_hnn234_ASPP1357.py │ ├── YpUnet_hnn234_BR.py │ ├── YpUnet_hnn234v2.py │ ├── YpUnet_hnn34.py │ └── YpUnet_hnn_AGV2.py ├── radam.py ├── train_4c.py ├── train_4cWM.py ├── train_4cWM_HNN.py ├── train_4c_HNN.py ├── train_rgb.py ├── train_rgb_HNN.py ├── train_rgb_WM_HNN.py ├── utils ├── .idea │ ├── misc.xml │ ├── modules.xml │ ├── utils.iml │ └── workspace.xml ├── .ipynb_checkpoints │ └── plot-checkpoint.ipynb ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── datasets.cpython-37.pyc │ ├── loss.cpython-37.pyc │ ├── metrics.cpython-37.pyc │ └── transforms.cpython-37.pyc ├── core.py ├── datasets.py ├── datasets2.py ├── datasets4c.py ├── datasets4cWM.py ├── datasetsWM.py ├── feature_parking.py ├── loss.py ├── metrics.py ├── parking.py ├── plot.ipynb ├── tiles.py ├── transforms.py ├── utils.py └── visualization.py └── weight_loss.py /.idea/building-extraction.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/.idea/building-extraction.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /PostProcessWatershed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/PostProcessWatershed.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/README.md -------------------------------------------------------------------------------- /Redundancy_cropUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/Redundancy_cropUtil.py -------------------------------------------------------------------------------- /Redundancy_predict_3c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/Redundancy_predict_3c.py -------------------------------------------------------------------------------- /compute_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/compute_metrics.py -------------------------------------------------------------------------------- /data/train_images/Subset1_img__0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/data/train_images/Subset1_img__0.png -------------------------------------------------------------------------------- /data/train_images/Subset1_img__1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/data/train_images/Subset1_img__1.png -------------------------------------------------------------------------------- /data/train_images/Subset1_img__2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/data/train_images/Subset1_img__2.png -------------------------------------------------------------------------------- /data/train_images/Subset1_img__3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/data/train_images/Subset1_img__3.png -------------------------------------------------------------------------------- /data/train_images/Subset1_img__4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/data/train_images/Subset1_img__4.png -------------------------------------------------------------------------------- /data/train_images/Subset1_img__5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/data/train_images/Subset1_img__5.png -------------------------------------------------------------------------------- /data/train_images/Subset1_img__6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/data/train_images/Subset1_img__6.png -------------------------------------------------------------------------------- /data/train_images/Subset1_img__7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/data/train_images/Subset1_img__7.png -------------------------------------------------------------------------------- /data/train_images/Subset1_img__8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/data/train_images/Subset1_img__8.png -------------------------------------------------------------------------------- /data/train_images/Subset1_img__9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/data/train_images/Subset1_img__9.png -------------------------------------------------------------------------------- /data/train_labels/Subset1_img__0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/data/train_labels/Subset1_img__0.png -------------------------------------------------------------------------------- /data/train_labels/Subset1_img__1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/data/train_labels/Subset1_img__1.png -------------------------------------------------------------------------------- /data/train_labels/Subset1_img__2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/data/train_labels/Subset1_img__2.png -------------------------------------------------------------------------------- /data/train_labels/Subset1_img__3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/data/train_labels/Subset1_img__3.png -------------------------------------------------------------------------------- /data/train_labels/Subset1_img__4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/data/train_labels/Subset1_img__4.png -------------------------------------------------------------------------------- /data/train_labels/Subset1_img__5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/data/train_labels/Subset1_img__5.png -------------------------------------------------------------------------------- /data/train_labels/Subset1_img__6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/data/train_labels/Subset1_img__6.png -------------------------------------------------------------------------------- /data/train_labels/Subset1_img__7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/data/train_labels/Subset1_img__7.png -------------------------------------------------------------------------------- /data/train_labels/Subset1_img__8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/data/train_labels/Subset1_img__8.png -------------------------------------------------------------------------------- /data/train_labels/Subset1_img__9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/data/train_labels/Subset1_img__9.png -------------------------------------------------------------------------------- /datasets2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/datasets2.py -------------------------------------------------------------------------------- /imgaug/DejaVuSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/DejaVuSans.ttf -------------------------------------------------------------------------------- /imgaug/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/__init__.py -------------------------------------------------------------------------------- /imgaug/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /imgaug/__pycache__/dtypes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/__pycache__/dtypes.cpython-37.pyc -------------------------------------------------------------------------------- /imgaug/__pycache__/imgaug.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/__pycache__/imgaug.cpython-37.pyc -------------------------------------------------------------------------------- /imgaug/__pycache__/parameters.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/__pycache__/parameters.cpython-37.pyc -------------------------------------------------------------------------------- /imgaug/augmentables/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmentables/__init__.py -------------------------------------------------------------------------------- /imgaug/augmentables/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmentables/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /imgaug/augmentables/__pycache__/batches.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmentables/__pycache__/batches.cpython-37.pyc -------------------------------------------------------------------------------- /imgaug/augmentables/__pycache__/bbs.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmentables/__pycache__/bbs.cpython-37.pyc -------------------------------------------------------------------------------- /imgaug/augmentables/__pycache__/heatmaps.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmentables/__pycache__/heatmaps.cpython-37.pyc -------------------------------------------------------------------------------- /imgaug/augmentables/__pycache__/kps.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmentables/__pycache__/kps.cpython-37.pyc -------------------------------------------------------------------------------- /imgaug/augmentables/__pycache__/lines.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmentables/__pycache__/lines.cpython-37.pyc -------------------------------------------------------------------------------- /imgaug/augmentables/__pycache__/normalization.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmentables/__pycache__/normalization.cpython-37.pyc -------------------------------------------------------------------------------- /imgaug/augmentables/__pycache__/polys.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmentables/__pycache__/polys.cpython-37.pyc -------------------------------------------------------------------------------- /imgaug/augmentables/__pycache__/segmaps.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmentables/__pycache__/segmaps.cpython-37.pyc -------------------------------------------------------------------------------- /imgaug/augmentables/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmentables/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /imgaug/augmentables/batches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmentables/batches.py -------------------------------------------------------------------------------- /imgaug/augmentables/bbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmentables/bbs.py -------------------------------------------------------------------------------- /imgaug/augmentables/heatmaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmentables/heatmaps.py -------------------------------------------------------------------------------- /imgaug/augmentables/kps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmentables/kps.py -------------------------------------------------------------------------------- /imgaug/augmentables/lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmentables/lines.py -------------------------------------------------------------------------------- /imgaug/augmentables/normalization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmentables/normalization.py -------------------------------------------------------------------------------- /imgaug/augmentables/polys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmentables/polys.py -------------------------------------------------------------------------------- /imgaug/augmentables/segmaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmentables/segmaps.py -------------------------------------------------------------------------------- /imgaug/augmentables/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmentables/utils.py -------------------------------------------------------------------------------- /imgaug/augmenters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmenters/__init__.py -------------------------------------------------------------------------------- /imgaug/augmenters/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmenters/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /imgaug/augmenters/__pycache__/arithmetic.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmenters/__pycache__/arithmetic.cpython-37.pyc -------------------------------------------------------------------------------- /imgaug/augmenters/__pycache__/blend.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmenters/__pycache__/blend.cpython-37.pyc -------------------------------------------------------------------------------- /imgaug/augmenters/__pycache__/blur.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmenters/__pycache__/blur.cpython-37.pyc -------------------------------------------------------------------------------- /imgaug/augmenters/__pycache__/color.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmenters/__pycache__/color.cpython-37.pyc -------------------------------------------------------------------------------- /imgaug/augmenters/__pycache__/contrast.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmenters/__pycache__/contrast.cpython-37.pyc -------------------------------------------------------------------------------- /imgaug/augmenters/__pycache__/convolutional.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmenters/__pycache__/convolutional.cpython-37.pyc -------------------------------------------------------------------------------- /imgaug/augmenters/__pycache__/edges.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmenters/__pycache__/edges.cpython-37.pyc -------------------------------------------------------------------------------- /imgaug/augmenters/__pycache__/flip.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmenters/__pycache__/flip.cpython-37.pyc -------------------------------------------------------------------------------- /imgaug/augmenters/__pycache__/geometric.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmenters/__pycache__/geometric.cpython-37.pyc -------------------------------------------------------------------------------- /imgaug/augmenters/__pycache__/meta.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmenters/__pycache__/meta.cpython-37.pyc -------------------------------------------------------------------------------- /imgaug/augmenters/__pycache__/pooling.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmenters/__pycache__/pooling.cpython-37.pyc -------------------------------------------------------------------------------- /imgaug/augmenters/__pycache__/segmentation.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmenters/__pycache__/segmentation.cpython-37.pyc -------------------------------------------------------------------------------- /imgaug/augmenters/__pycache__/size.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmenters/__pycache__/size.cpython-37.pyc -------------------------------------------------------------------------------- /imgaug/augmenters/__pycache__/weather.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmenters/__pycache__/weather.cpython-37.pyc -------------------------------------------------------------------------------- /imgaug/augmenters/arithmetic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmenters/arithmetic.py -------------------------------------------------------------------------------- /imgaug/augmenters/blend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmenters/blend.py -------------------------------------------------------------------------------- /imgaug/augmenters/blur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmenters/blur.py -------------------------------------------------------------------------------- /imgaug/augmenters/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmenters/color.py -------------------------------------------------------------------------------- /imgaug/augmenters/contrast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmenters/contrast.py -------------------------------------------------------------------------------- /imgaug/augmenters/convolutional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmenters/convolutional.py -------------------------------------------------------------------------------- /imgaug/augmenters/edges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmenters/edges.py -------------------------------------------------------------------------------- /imgaug/augmenters/flip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmenters/flip.py -------------------------------------------------------------------------------- /imgaug/augmenters/geometric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmenters/geometric.py -------------------------------------------------------------------------------- /imgaug/augmenters/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmenters/meta.py -------------------------------------------------------------------------------- /imgaug/augmenters/overlay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmenters/overlay.py -------------------------------------------------------------------------------- /imgaug/augmenters/pooling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmenters/pooling.py -------------------------------------------------------------------------------- /imgaug/augmenters/segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmenters/segmentation.py -------------------------------------------------------------------------------- /imgaug/augmenters/size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmenters/size.py -------------------------------------------------------------------------------- /imgaug/augmenters/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/augmenters/weather.py -------------------------------------------------------------------------------- /imgaug/dtypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/dtypes.py -------------------------------------------------------------------------------- /imgaug/external/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/external/README.md -------------------------------------------------------------------------------- /imgaug/external/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /imgaug/external/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/external/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /imgaug/external/__pycache__/opensimplex.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/external/__pycache__/opensimplex.cpython-37.pyc -------------------------------------------------------------------------------- /imgaug/external/opensimplex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/external/opensimplex.py -------------------------------------------------------------------------------- /imgaug/external/poly_point_isect_py2py3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/external/poly_point_isect_py2py3.py -------------------------------------------------------------------------------- /imgaug/external/poly_point_isect_py3.py.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/external/poly_point_isect_py3.py.bak -------------------------------------------------------------------------------- /imgaug/imgaug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/imgaug.py -------------------------------------------------------------------------------- /imgaug/multicore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/multicore.py -------------------------------------------------------------------------------- /imgaug/parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/parameters.py -------------------------------------------------------------------------------- /imgaug/quokka.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/quokka.jpg -------------------------------------------------------------------------------- /imgaug/quokka_annotations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/quokka_annotations.json -------------------------------------------------------------------------------- /imgaug/quokka_depth_map_halfres.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/quokka_depth_map_halfres.png -------------------------------------------------------------------------------- /imgaug/testutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/imgaug/testutils.py -------------------------------------------------------------------------------- /models/Aspp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/Aspp.py -------------------------------------------------------------------------------- /models/DAF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/DAF.py -------------------------------------------------------------------------------- /models/YpUnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/YpUnet.py -------------------------------------------------------------------------------- /models/YpUnet_AG_hnn234.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/YpUnet_AG_hnn234.py -------------------------------------------------------------------------------- /models/YpUnet_hnn_AG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/YpUnet_hnn_AG.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/__pycache__/Aspp.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/__pycache__/Aspp.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/YpUnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/__pycache__/YpUnet.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/YpUnet_AG_hnn234.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/__pycache__/YpUnet_AG_hnn234.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/YpUnet_hnn_AG.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/__pycache__/YpUnet_hnn_AG.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /models/deeplab/.deeplab.py.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/deeplab/.deeplab.py.swp -------------------------------------------------------------------------------- /models/deeplab/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/deeplab/aspp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/deeplab/aspp.py -------------------------------------------------------------------------------- /models/deeplab/backbone/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/deeplab/backbone/__init__.py -------------------------------------------------------------------------------- /models/deeplab/backbone/drn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/deeplab/backbone/drn.py -------------------------------------------------------------------------------- /models/deeplab/backbone/mobilenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/deeplab/backbone/mobilenet.py -------------------------------------------------------------------------------- /models/deeplab/backbone/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/deeplab/backbone/resnet.py -------------------------------------------------------------------------------- /models/deeplab/backbone/xception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/deeplab/backbone/xception.py -------------------------------------------------------------------------------- /models/deeplab/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/deeplab/decoder.py -------------------------------------------------------------------------------- /models/deeplab/deeplab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/deeplab/deeplab.py -------------------------------------------------------------------------------- /models/deeplab/sync_batchnorm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/deeplab/sync_batchnorm/__init__.py -------------------------------------------------------------------------------- /models/deeplab/sync_batchnorm/batchnorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/deeplab/sync_batchnorm/batchnorm.py -------------------------------------------------------------------------------- /models/deeplab/sync_batchnorm/comm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/deeplab/sync_batchnorm/comm.py -------------------------------------------------------------------------------- /models/deeplab/sync_batchnorm/replicate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/deeplab/sync_batchnorm/replicate.py -------------------------------------------------------------------------------- /models/deeplab/sync_batchnorm/unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/deeplab/sync_batchnorm/unittest.py -------------------------------------------------------------------------------- /models/lib/RoIAlign/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/lib/RoIAlign/README.md -------------------------------------------------------------------------------- /models/lib/RoIAlign/build/lib/roi_align/_ext/crop_and_resize/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/lib/RoIAlign/build/lib/roi_align/_ext/crop_and_resize/__init__.py -------------------------------------------------------------------------------- /models/lib/RoIAlign/build/lib/roi_align/_ext/crop_and_resize/_crop_and_resize.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/lib/RoIAlign/build/lib/roi_align/_ext/crop_and_resize/_crop_and_resize.so -------------------------------------------------------------------------------- /models/lib/RoIAlign/build/lib/roi_align/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/lib/RoIAlign/build/lib/roi_align/build.py -------------------------------------------------------------------------------- /models/lib/RoIAlign/build/lib/roi_align/crop_and_resize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/lib/RoIAlign/build/lib/roi_align/crop_and_resize.py -------------------------------------------------------------------------------- /models/lib/RoIAlign/build/lib/roi_align/roi_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/lib/RoIAlign/build/lib/roi_align/roi_align.py -------------------------------------------------------------------------------- /models/lib/RoIAlign/dist/roi_align-0.0.1-py3.6.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/lib/RoIAlign/dist/roi_align-0.0.1-py3.6.egg -------------------------------------------------------------------------------- /models/lib/RoIAlign/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/lib/RoIAlign/install.sh -------------------------------------------------------------------------------- /models/lib/RoIAlign/roi_align.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/lib/RoIAlign/roi_align.egg-info/PKG-INFO -------------------------------------------------------------------------------- /models/lib/RoIAlign/roi_align.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/lib/RoIAlign/roi_align.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /models/lib/RoIAlign/roi_align.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /models/lib/RoIAlign/roi_align.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | cffi 2 | -------------------------------------------------------------------------------- /models/lib/RoIAlign/roi_align.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | roi_align 2 | -------------------------------------------------------------------------------- /models/lib/RoIAlign/roi_align/_ext/crop_and_resize/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/lib/RoIAlign/roi_align/_ext/crop_and_resize/__init__.py -------------------------------------------------------------------------------- /models/lib/RoIAlign/roi_align/_ext/crop_and_resize/_crop_and_resize.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/lib/RoIAlign/roi_align/_ext/crop_and_resize/_crop_and_resize.so -------------------------------------------------------------------------------- /models/lib/RoIAlign/roi_align/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/lib/RoIAlign/roi_align/build.py -------------------------------------------------------------------------------- /models/lib/RoIAlign/roi_align/crop_and_resize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/lib/RoIAlign/roi_align/crop_and_resize.py -------------------------------------------------------------------------------- /models/lib/RoIAlign/roi_align/roi_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/lib/RoIAlign/roi_align/roi_align.py -------------------------------------------------------------------------------- /models/lib/RoIAlign/roi_align/src/crop_and_resize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/lib/RoIAlign/roi_align/src/crop_and_resize.c -------------------------------------------------------------------------------- /models/lib/RoIAlign/roi_align/src/crop_and_resize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/lib/RoIAlign/roi_align/src/crop_and_resize.h -------------------------------------------------------------------------------- /models/lib/RoIAlign/roi_align/src/crop_and_resize_gpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/lib/RoIAlign/roi_align/src/crop_and_resize_gpu.c -------------------------------------------------------------------------------- /models/lib/RoIAlign/roi_align/src/crop_and_resize_gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/lib/RoIAlign/roi_align/src/crop_and_resize_gpu.h -------------------------------------------------------------------------------- /models/lib/RoIAlign/roi_align/src/cuda/crop_and_resize_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/lib/RoIAlign/roi_align/src/cuda/crop_and_resize_kernel.cu -------------------------------------------------------------------------------- /models/lib/RoIAlign/roi_align/src/cuda/crop_and_resize_kernel.cu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/lib/RoIAlign/roi_align/src/cuda/crop_and_resize_kernel.cu.o -------------------------------------------------------------------------------- /models/lib/RoIAlign/roi_align/src/cuda/crop_and_resize_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/lib/RoIAlign/roi_align/src/cuda/crop_and_resize_kernel.h -------------------------------------------------------------------------------- /models/lib/RoIAlign/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/lib/RoIAlign/setup.py -------------------------------------------------------------------------------- /models/lib/RoIAlign/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/lib/RoIAlign/test.sh -------------------------------------------------------------------------------- /models/lib/RoIAlign/tests/crop_and_resize_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/lib/RoIAlign/tests/crop_and_resize_example.py -------------------------------------------------------------------------------- /models/lib/RoIAlign/tests/images/choco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/lib/RoIAlign/tests/images/choco.png -------------------------------------------------------------------------------- /models/lib/RoIAlign/tests/images/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/lib/RoIAlign/tests/images/snow.png -------------------------------------------------------------------------------- /models/lib/RoIAlign/tests/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/lib/RoIAlign/tests/test.py -------------------------------------------------------------------------------- /models/lib/RoIAlign/tests/test2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/lib/RoIAlign/tests/test2.py -------------------------------------------------------------------------------- /models/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/model.py -------------------------------------------------------------------------------- /models/modelzoo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/modelzoo/__init__.py -------------------------------------------------------------------------------- /models/modelzoo/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/modelzoo/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /models/modelzoo/__pycache__/adaptive_avgmax_pool.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/modelzoo/__pycache__/adaptive_avgmax_pool.cpython-37.pyc -------------------------------------------------------------------------------- /models/modelzoo/__pycache__/convert_from_mxnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/modelzoo/__pycache__/convert_from_mxnet.cpython-37.pyc -------------------------------------------------------------------------------- /models/modelzoo/__pycache__/dpn.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/modelzoo/__pycache__/dpn.cpython-37.pyc -------------------------------------------------------------------------------- /models/modelzoo/__pycache__/efficientNet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/modelzoo/__pycache__/efficientNet.cpython-37.pyc -------------------------------------------------------------------------------- /models/modelzoo/__pycache__/inceptionV4.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/modelzoo/__pycache__/inceptionV4.cpython-37.pyc -------------------------------------------------------------------------------- /models/modelzoo/__pycache__/inceptionresnetv2.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/modelzoo/__pycache__/inceptionresnetv2.cpython-37.pyc -------------------------------------------------------------------------------- /models/modelzoo/__pycache__/resnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/modelzoo/__pycache__/resnet.cpython-37.pyc -------------------------------------------------------------------------------- /models/modelzoo/__pycache__/senet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/modelzoo/__pycache__/senet.cpython-37.pyc -------------------------------------------------------------------------------- /models/modelzoo/__pycache__/senet2.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/modelzoo/__pycache__/senet2.cpython-37.pyc -------------------------------------------------------------------------------- /models/modelzoo/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/modelzoo/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /models/modelzoo/__pycache__/xception.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/modelzoo/__pycache__/xception.cpython-37.pyc -------------------------------------------------------------------------------- /models/modelzoo/adaptive_avgmax_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/modelzoo/adaptive_avgmax_pool.py -------------------------------------------------------------------------------- /models/modelzoo/convert_from_mxnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/modelzoo/convert_from_mxnet.py -------------------------------------------------------------------------------- /models/modelzoo/dpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/modelzoo/dpn.py -------------------------------------------------------------------------------- /models/modelzoo/dpnv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/modelzoo/dpnv2.py -------------------------------------------------------------------------------- /models/modelzoo/efficientNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/modelzoo/efficientNet.py -------------------------------------------------------------------------------- /models/modelzoo/inceptionV4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/modelzoo/inceptionV4.py -------------------------------------------------------------------------------- /models/modelzoo/inceptionresnetv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/modelzoo/inceptionresnetv2.py -------------------------------------------------------------------------------- /models/modelzoo/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/modelzoo/resnet.py -------------------------------------------------------------------------------- /models/modelzoo/senet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/modelzoo/senet.py -------------------------------------------------------------------------------- /models/modelzoo/senet2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/modelzoo/senet2.py -------------------------------------------------------------------------------- /models/modelzoo/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/modelzoo/utils.py -------------------------------------------------------------------------------- /models/modelzoo/xception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/modelzoo/xception.py -------------------------------------------------------------------------------- /models/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/modules/bn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/modules/bn.py -------------------------------------------------------------------------------- /models/modules/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/modules/functions.py -------------------------------------------------------------------------------- /models/modules/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/modules/misc.py -------------------------------------------------------------------------------- /models/modules/residual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/modules/residual.py -------------------------------------------------------------------------------- /models/modules/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/modules/src/common.h -------------------------------------------------------------------------------- /models/modules/src/inplace_abn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/modules/src/inplace_abn.cpp -------------------------------------------------------------------------------- /models/modules/src/inplace_abn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/modules/src/inplace_abn.h -------------------------------------------------------------------------------- /models/modules/src/inplace_abn_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/modules/src/inplace_abn_cpu.cpp -------------------------------------------------------------------------------- /models/modules/src/inplace_abn_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/modules/src/inplace_abn_cuda.cu -------------------------------------------------------------------------------- /models/modules/wider_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/modules/wider_resnet.py -------------------------------------------------------------------------------- /models/myUnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/myUnet.py -------------------------------------------------------------------------------- /models/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/network.py -------------------------------------------------------------------------------- /models/ternausnets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/ternausnets.py -------------------------------------------------------------------------------- /models/unet/YpUnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/unet/YpUnet.py -------------------------------------------------------------------------------- /models/unet/YpUnet2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/unet/YpUnet2.py -------------------------------------------------------------------------------- /models/unet/YpUnet_ASPP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/unet/YpUnet_ASPP.py -------------------------------------------------------------------------------- /models/unet/YpUnet_CBAM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/unet/YpUnet_CBAM.py -------------------------------------------------------------------------------- /models/unet/YpUnet_CBAM_AG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/unet/YpUnet_CBAM_AG.py -------------------------------------------------------------------------------- /models/unet/YpUnet_CBAM_AG2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/unet/YpUnet_CBAM_AG2.py -------------------------------------------------------------------------------- /models/unet/YpUnet_CBAM_AG_BR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/unet/YpUnet_CBAM_AG_BR.py -------------------------------------------------------------------------------- /models/unet/YpUnet_CBAM_BR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/unet/YpUnet_CBAM_BR.py -------------------------------------------------------------------------------- /models/unet/YpUnet_CBAM_BR2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/unet/YpUnet_CBAM_BR2.py -------------------------------------------------------------------------------- /models/unet/YpUnet_CBAM_BR3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/unet/YpUnet_CBAM_BR3.py -------------------------------------------------------------------------------- /models/unet/YpUnet_CBAM_GAM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/unet/YpUnet_CBAM_GAM.py -------------------------------------------------------------------------------- /models/unet/YpUnet_CBAM_GCN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/unet/YpUnet_CBAM_GCN.py -------------------------------------------------------------------------------- /models/unet/YpUnet_FPN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/unet/YpUnet_FPN.py -------------------------------------------------------------------------------- /models/unet/YpUnet_FPN2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/unet/YpUnet_FPN2.py -------------------------------------------------------------------------------- /models/unet/YpUnet_HNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/unet/YpUnet_HNN.py -------------------------------------------------------------------------------- /models/unet/YpUnet_SE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/unet/YpUnet_SE.py -------------------------------------------------------------------------------- /models/unet/YpUnet_SELoss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/unet/YpUnet_SELoss.py -------------------------------------------------------------------------------- /models/unet/YpUnet_dc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/unet/YpUnet_dc.py -------------------------------------------------------------------------------- /models/unet/YpUnet_hdc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/unet/YpUnet_hdc.py -------------------------------------------------------------------------------- /models/unet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/unet/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/unet/unet.py -------------------------------------------------------------------------------- /models/unet/unet2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/unet/unet2.py -------------------------------------------------------------------------------- /models/unet/unet_4c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/unet/unet_4c.py -------------------------------------------------------------------------------- /models/unet/unet_dsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/unet/unet_dsm.py -------------------------------------------------------------------------------- /models/unet/unet_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/unet/unet_models.py -------------------------------------------------------------------------------- /models/unet256/YpUnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/unet256/YpUnet.py -------------------------------------------------------------------------------- /models/unet256/YpUnet_AG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/unet256/YpUnet_AG.py -------------------------------------------------------------------------------- /models/unet256/YpUnet_AG_hnn234.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/unet256/YpUnet_AG_hnn234.py -------------------------------------------------------------------------------- /models/unet256/YpUnet_ASPP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/unet256/YpUnet_ASPP.py -------------------------------------------------------------------------------- /models/unet256/YpUnet_hnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/unet256/YpUnet_hnn.py -------------------------------------------------------------------------------- /models/unet256/YpUnet_hnn1234.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/unet256/YpUnet_hnn1234.py -------------------------------------------------------------------------------- /models/unet256/YpUnet_hnn1234V2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/unet256/YpUnet_hnn1234V2.py -------------------------------------------------------------------------------- /models/unet256/YpUnet_hnn234_ASPP1357.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/unet256/YpUnet_hnn234_ASPP1357.py -------------------------------------------------------------------------------- /models/unet256/YpUnet_hnn234_BR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/unet256/YpUnet_hnn234_BR.py -------------------------------------------------------------------------------- /models/unet256/YpUnet_hnn234v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/unet256/YpUnet_hnn234v2.py -------------------------------------------------------------------------------- /models/unet256/YpUnet_hnn34.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/unet256/YpUnet_hnn34.py -------------------------------------------------------------------------------- /models/unet256/YpUnet_hnn_AGV2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/models/unet256/YpUnet_hnn_AGV2.py -------------------------------------------------------------------------------- /radam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/radam.py -------------------------------------------------------------------------------- /train_4c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/train_4c.py -------------------------------------------------------------------------------- /train_4cWM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/train_4cWM.py -------------------------------------------------------------------------------- /train_4cWM_HNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/train_4cWM_HNN.py -------------------------------------------------------------------------------- /train_4c_HNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/train_4c_HNN.py -------------------------------------------------------------------------------- /train_rgb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/train_rgb.py -------------------------------------------------------------------------------- /train_rgb_HNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/train_rgb_HNN.py -------------------------------------------------------------------------------- /train_rgb_WM_HNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/train_rgb_WM_HNN.py -------------------------------------------------------------------------------- /utils/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/utils/.idea/misc.xml -------------------------------------------------------------------------------- /utils/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/utils/.idea/modules.xml -------------------------------------------------------------------------------- /utils/.idea/utils.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/utils/.idea/utils.iml -------------------------------------------------------------------------------- /utils/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/utils/.idea/workspace.xml -------------------------------------------------------------------------------- /utils/.ipynb_checkpoints/plot-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/utils/.ipynb_checkpoints/plot-checkpoint.ipynb -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/utils/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/datasets.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/utils/__pycache__/datasets.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/loss.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/utils/__pycache__/loss.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/metrics.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/utils/__pycache__/metrics.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/transforms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/utils/__pycache__/transforms.cpython-37.pyc -------------------------------------------------------------------------------- /utils/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/utils/core.py -------------------------------------------------------------------------------- /utils/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/utils/datasets.py -------------------------------------------------------------------------------- /utils/datasets2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/utils/datasets2.py -------------------------------------------------------------------------------- /utils/datasets4c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/utils/datasets4c.py -------------------------------------------------------------------------------- /utils/datasets4cWM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/utils/datasets4cWM.py -------------------------------------------------------------------------------- /utils/datasetsWM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/utils/datasetsWM.py -------------------------------------------------------------------------------- /utils/feature_parking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/utils/feature_parking.py -------------------------------------------------------------------------------- /utils/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/utils/loss.py -------------------------------------------------------------------------------- /utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/utils/metrics.py -------------------------------------------------------------------------------- /utils/parking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/utils/parking.py -------------------------------------------------------------------------------- /utils/plot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/utils/plot.ipynb -------------------------------------------------------------------------------- /utils/tiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/utils/tiles.py -------------------------------------------------------------------------------- /utils/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/utils/transforms.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/utils/utils.py -------------------------------------------------------------------------------- /utils/visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/utils/visualization.py -------------------------------------------------------------------------------- /weight_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonwYang/building-extraction/HEAD/weight_loss.py --------------------------------------------------------------------------------