├── 1-XD_XD ├── .DS_Store ├── 20170613_docs_dockerized_solution.html ├── Dockerfile ├── README.md ├── code │ ├── merge.py │ ├── test.sh │ ├── train.sh │ ├── v12_im.py │ ├── v13.py │ ├── v16.py │ ├── v17.py │ ├── v5_im.py │ ├── v9s.py │ └── visualizer-2.0.zip ├── images │ ├── .DS_Store │ ├── Figure1ModelExample.jpg │ ├── Figure2VegasExample.jpg │ ├── Figure2p1VegasExample.jpg │ ├── Figure3ModelPerformance.jpg │ ├── Figure3p1_OSM.jpg │ ├── Figure3p2_OSM.jpg │ ├── Figure3p3_OSM.jpg │ ├── Figure3p4_OSM.jpg │ ├── Figure4p1Khartoum.jpg │ ├── Figure4p2.jpg │ ├── Figure4p3.jpg │ ├── Figure4p4.jpg │ └── Figure4p5.jpg ├── keras.json ├── osmdata │ └── readme.txt ├── py35.yml └── working │ └── readme.txt ├── 2-wleite ├── Dockerfile ├── README.md ├── bin │ ├── Building.class │ ├── BuildingDetectorTester$1.class │ ├── BuildingDetectorTester$2.class │ ├── BuildingDetectorTester.class │ ├── BuildingDetectorTrainer$1.class │ ├── BuildingDetectorTrainer.class │ ├── BuildingFeatureExtractor.class │ ├── ClassificationNode.class │ ├── ClassificationTree.class │ ├── ImageViewPanel$1.class │ ├── ImageViewPanel$2.class │ ├── ImageViewPanel.class │ ├── ImgViewer$1.class │ ├── ImgViewer.class │ ├── MatchPolygon.class │ ├── MultiChannelImage.class │ ├── PolygonFeatureExtractor.class │ ├── PolygonMatcherTrainer$1.class │ ├── PolygonMatcherTrainer.class │ ├── RandomForestBuilder$1.class │ ├── RandomForestBuilder.class │ ├── RandomForestPredictor.class │ ├── SpacenetMain.class │ ├── Util$1.class │ └── Util.class ├── lib │ ├── imageio-ext-geocore-1.1.16.jar │ ├── imageio-ext-streams-1.1.16.jar │ ├── imageio-ext-tiff-1.1.16.jar │ ├── imageio-ext-utilities-1.1.16.jar │ ├── jai_codec-1.1.3.jar │ ├── jai_core-1.1.3.jar │ ├── jai_imageio-1.1.jar │ ├── slf4j-api-1.7.25.jar │ └── slf4j-nop-1.7.25.jar ├── model │ └── readme.txt ├── src │ ├── Building.java │ ├── BuildingDetectorTester.java │ ├── BuildingDetectorTrainer.java │ ├── BuildingFeatureExtractor.java │ ├── ClassificationNode.java │ ├── ClassificationTree.java │ ├── ImgViewer.java │ ├── MatchPolygon.java │ ├── MultiChannelImage.java │ ├── PolygonFeatureExtractor.java │ ├── PolygonMatcherTrainer.java │ ├── RandomForestBuilder.java │ ├── RandomForestPredictor.java │ ├── SpacenetMain.java │ ├── Util.java │ └── visualizer │ │ ├── BuildingVisualizer.java │ │ └── Utils.java ├── test.sh └── train.sh ├── 3-nofto ├── Dockerfile ├── README.md ├── lib │ ├── imageio-ext-geocore-1.1.16.jar │ ├── imageio-ext-streams-1.1.16.jar │ ├── imageio-ext-tiff-1.1.16.jar │ ├── imageio-ext-utilities-1.1.16.jar │ ├── jai_codec-1.1.3.jar │ ├── jai_core-1.1.3.jar │ └── jai_imageio-1.1.jar ├── models │ └── readme.txt ├── src │ ├── Beam.java │ ├── Building.java │ ├── BuildingDetectorTester.java │ ├── BuildingDetectorTrainer.java │ ├── BuildingFeatureExtractor.java │ ├── ClassificationNode.java │ ├── ClassificationTree.java │ ├── ImgViewer.java │ ├── MatchPolygon.java │ ├── MultiChannelImage.java │ ├── PolygonFeatureExtractor.java │ ├── PolygonMatcherTrainer.java │ ├── RandomForestBuilder.java │ ├── RandomForestPredictor.java │ └── Util.java ├── test.sh ├── test_one_city.sh ├── train.sh ├── train_one_city_a.sh └── train_one_city_b.sh ├── LICENSE ├── README.md └── solution_descriptions ├── .DS_Store ├── 1-XD_XD.docx ├── 2-wleite.docx └── 3-nofto.docx /1-XD_XD/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/1-XD_XD/.DS_Store -------------------------------------------------------------------------------- /1-XD_XD/20170613_docs_dockerized_solution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/1-XD_XD/20170613_docs_dockerized_solution.html -------------------------------------------------------------------------------- /1-XD_XD/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/1-XD_XD/Dockerfile -------------------------------------------------------------------------------- /1-XD_XD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/1-XD_XD/README.md -------------------------------------------------------------------------------- /1-XD_XD/code/merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/1-XD_XD/code/merge.py -------------------------------------------------------------------------------- /1-XD_XD/code/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/1-XD_XD/code/test.sh -------------------------------------------------------------------------------- /1-XD_XD/code/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/1-XD_XD/code/train.sh -------------------------------------------------------------------------------- /1-XD_XD/code/v12_im.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/1-XD_XD/code/v12_im.py -------------------------------------------------------------------------------- /1-XD_XD/code/v13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/1-XD_XD/code/v13.py -------------------------------------------------------------------------------- /1-XD_XD/code/v16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/1-XD_XD/code/v16.py -------------------------------------------------------------------------------- /1-XD_XD/code/v17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/1-XD_XD/code/v17.py -------------------------------------------------------------------------------- /1-XD_XD/code/v5_im.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/1-XD_XD/code/v5_im.py -------------------------------------------------------------------------------- /1-XD_XD/code/v9s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/1-XD_XD/code/v9s.py -------------------------------------------------------------------------------- /1-XD_XD/code/visualizer-2.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/1-XD_XD/code/visualizer-2.0.zip -------------------------------------------------------------------------------- /1-XD_XD/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/1-XD_XD/images/.DS_Store -------------------------------------------------------------------------------- /1-XD_XD/images/Figure1ModelExample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/1-XD_XD/images/Figure1ModelExample.jpg -------------------------------------------------------------------------------- /1-XD_XD/images/Figure2VegasExample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/1-XD_XD/images/Figure2VegasExample.jpg -------------------------------------------------------------------------------- /1-XD_XD/images/Figure2p1VegasExample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/1-XD_XD/images/Figure2p1VegasExample.jpg -------------------------------------------------------------------------------- /1-XD_XD/images/Figure3ModelPerformance.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/1-XD_XD/images/Figure3ModelPerformance.jpg -------------------------------------------------------------------------------- /1-XD_XD/images/Figure3p1_OSM.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/1-XD_XD/images/Figure3p1_OSM.jpg -------------------------------------------------------------------------------- /1-XD_XD/images/Figure3p2_OSM.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/1-XD_XD/images/Figure3p2_OSM.jpg -------------------------------------------------------------------------------- /1-XD_XD/images/Figure3p3_OSM.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/1-XD_XD/images/Figure3p3_OSM.jpg -------------------------------------------------------------------------------- /1-XD_XD/images/Figure3p4_OSM.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/1-XD_XD/images/Figure3p4_OSM.jpg -------------------------------------------------------------------------------- /1-XD_XD/images/Figure4p1Khartoum.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/1-XD_XD/images/Figure4p1Khartoum.jpg -------------------------------------------------------------------------------- /1-XD_XD/images/Figure4p2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/1-XD_XD/images/Figure4p2.jpg -------------------------------------------------------------------------------- /1-XD_XD/images/Figure4p3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/1-XD_XD/images/Figure4p3.jpg -------------------------------------------------------------------------------- /1-XD_XD/images/Figure4p4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/1-XD_XD/images/Figure4p4.jpg -------------------------------------------------------------------------------- /1-XD_XD/images/Figure4p5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/1-XD_XD/images/Figure4p5.jpg -------------------------------------------------------------------------------- /1-XD_XD/keras.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/1-XD_XD/keras.json -------------------------------------------------------------------------------- /1-XD_XD/osmdata/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/1-XD_XD/osmdata/readme.txt -------------------------------------------------------------------------------- /1-XD_XD/py35.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/1-XD_XD/py35.yml -------------------------------------------------------------------------------- /1-XD_XD/working/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/1-XD_XD/working/readme.txt -------------------------------------------------------------------------------- /2-wleite/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/Dockerfile -------------------------------------------------------------------------------- /2-wleite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/README.md -------------------------------------------------------------------------------- /2-wleite/bin/Building.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/bin/Building.class -------------------------------------------------------------------------------- /2-wleite/bin/BuildingDetectorTester$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/bin/BuildingDetectorTester$1.class -------------------------------------------------------------------------------- /2-wleite/bin/BuildingDetectorTester$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/bin/BuildingDetectorTester$2.class -------------------------------------------------------------------------------- /2-wleite/bin/BuildingDetectorTester.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/bin/BuildingDetectorTester.class -------------------------------------------------------------------------------- /2-wleite/bin/BuildingDetectorTrainer$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/bin/BuildingDetectorTrainer$1.class -------------------------------------------------------------------------------- /2-wleite/bin/BuildingDetectorTrainer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/bin/BuildingDetectorTrainer.class -------------------------------------------------------------------------------- /2-wleite/bin/BuildingFeatureExtractor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/bin/BuildingFeatureExtractor.class -------------------------------------------------------------------------------- /2-wleite/bin/ClassificationNode.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/bin/ClassificationNode.class -------------------------------------------------------------------------------- /2-wleite/bin/ClassificationTree.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/bin/ClassificationTree.class -------------------------------------------------------------------------------- /2-wleite/bin/ImageViewPanel$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/bin/ImageViewPanel$1.class -------------------------------------------------------------------------------- /2-wleite/bin/ImageViewPanel$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/bin/ImageViewPanel$2.class -------------------------------------------------------------------------------- /2-wleite/bin/ImageViewPanel.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/bin/ImageViewPanel.class -------------------------------------------------------------------------------- /2-wleite/bin/ImgViewer$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/bin/ImgViewer$1.class -------------------------------------------------------------------------------- /2-wleite/bin/ImgViewer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/bin/ImgViewer.class -------------------------------------------------------------------------------- /2-wleite/bin/MatchPolygon.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/bin/MatchPolygon.class -------------------------------------------------------------------------------- /2-wleite/bin/MultiChannelImage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/bin/MultiChannelImage.class -------------------------------------------------------------------------------- /2-wleite/bin/PolygonFeatureExtractor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/bin/PolygonFeatureExtractor.class -------------------------------------------------------------------------------- /2-wleite/bin/PolygonMatcherTrainer$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/bin/PolygonMatcherTrainer$1.class -------------------------------------------------------------------------------- /2-wleite/bin/PolygonMatcherTrainer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/bin/PolygonMatcherTrainer.class -------------------------------------------------------------------------------- /2-wleite/bin/RandomForestBuilder$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/bin/RandomForestBuilder$1.class -------------------------------------------------------------------------------- /2-wleite/bin/RandomForestBuilder.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/bin/RandomForestBuilder.class -------------------------------------------------------------------------------- /2-wleite/bin/RandomForestPredictor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/bin/RandomForestPredictor.class -------------------------------------------------------------------------------- /2-wleite/bin/SpacenetMain.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/bin/SpacenetMain.class -------------------------------------------------------------------------------- /2-wleite/bin/Util$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/bin/Util$1.class -------------------------------------------------------------------------------- /2-wleite/bin/Util.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/bin/Util.class -------------------------------------------------------------------------------- /2-wleite/lib/imageio-ext-geocore-1.1.16.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/lib/imageio-ext-geocore-1.1.16.jar -------------------------------------------------------------------------------- /2-wleite/lib/imageio-ext-streams-1.1.16.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/lib/imageio-ext-streams-1.1.16.jar -------------------------------------------------------------------------------- /2-wleite/lib/imageio-ext-tiff-1.1.16.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/lib/imageio-ext-tiff-1.1.16.jar -------------------------------------------------------------------------------- /2-wleite/lib/imageio-ext-utilities-1.1.16.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/lib/imageio-ext-utilities-1.1.16.jar -------------------------------------------------------------------------------- /2-wleite/lib/jai_codec-1.1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/lib/jai_codec-1.1.3.jar -------------------------------------------------------------------------------- /2-wleite/lib/jai_core-1.1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/lib/jai_core-1.1.3.jar -------------------------------------------------------------------------------- /2-wleite/lib/jai_imageio-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/lib/jai_imageio-1.1.jar -------------------------------------------------------------------------------- /2-wleite/lib/slf4j-api-1.7.25.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/lib/slf4j-api-1.7.25.jar -------------------------------------------------------------------------------- /2-wleite/lib/slf4j-nop-1.7.25.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/lib/slf4j-nop-1.7.25.jar -------------------------------------------------------------------------------- /2-wleite/model/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/model/readme.txt -------------------------------------------------------------------------------- /2-wleite/src/Building.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/src/Building.java -------------------------------------------------------------------------------- /2-wleite/src/BuildingDetectorTester.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/src/BuildingDetectorTester.java -------------------------------------------------------------------------------- /2-wleite/src/BuildingDetectorTrainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/src/BuildingDetectorTrainer.java -------------------------------------------------------------------------------- /2-wleite/src/BuildingFeatureExtractor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/src/BuildingFeatureExtractor.java -------------------------------------------------------------------------------- /2-wleite/src/ClassificationNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/src/ClassificationNode.java -------------------------------------------------------------------------------- /2-wleite/src/ClassificationTree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/src/ClassificationTree.java -------------------------------------------------------------------------------- /2-wleite/src/ImgViewer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/src/ImgViewer.java -------------------------------------------------------------------------------- /2-wleite/src/MatchPolygon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/src/MatchPolygon.java -------------------------------------------------------------------------------- /2-wleite/src/MultiChannelImage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/src/MultiChannelImage.java -------------------------------------------------------------------------------- /2-wleite/src/PolygonFeatureExtractor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/src/PolygonFeatureExtractor.java -------------------------------------------------------------------------------- /2-wleite/src/PolygonMatcherTrainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/src/PolygonMatcherTrainer.java -------------------------------------------------------------------------------- /2-wleite/src/RandomForestBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/src/RandomForestBuilder.java -------------------------------------------------------------------------------- /2-wleite/src/RandomForestPredictor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/src/RandomForestPredictor.java -------------------------------------------------------------------------------- /2-wleite/src/SpacenetMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/src/SpacenetMain.java -------------------------------------------------------------------------------- /2-wleite/src/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/src/Util.java -------------------------------------------------------------------------------- /2-wleite/src/visualizer/BuildingVisualizer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/src/visualizer/BuildingVisualizer.java -------------------------------------------------------------------------------- /2-wleite/src/visualizer/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/src/visualizer/Utils.java -------------------------------------------------------------------------------- /2-wleite/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/test.sh -------------------------------------------------------------------------------- /2-wleite/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/2-wleite/train.sh -------------------------------------------------------------------------------- /3-nofto/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/3-nofto/Dockerfile -------------------------------------------------------------------------------- /3-nofto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/3-nofto/README.md -------------------------------------------------------------------------------- /3-nofto/lib/imageio-ext-geocore-1.1.16.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/3-nofto/lib/imageio-ext-geocore-1.1.16.jar -------------------------------------------------------------------------------- /3-nofto/lib/imageio-ext-streams-1.1.16.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/3-nofto/lib/imageio-ext-streams-1.1.16.jar -------------------------------------------------------------------------------- /3-nofto/lib/imageio-ext-tiff-1.1.16.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/3-nofto/lib/imageio-ext-tiff-1.1.16.jar -------------------------------------------------------------------------------- /3-nofto/lib/imageio-ext-utilities-1.1.16.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/3-nofto/lib/imageio-ext-utilities-1.1.16.jar -------------------------------------------------------------------------------- /3-nofto/lib/jai_codec-1.1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/3-nofto/lib/jai_codec-1.1.3.jar -------------------------------------------------------------------------------- /3-nofto/lib/jai_core-1.1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/3-nofto/lib/jai_core-1.1.3.jar -------------------------------------------------------------------------------- /3-nofto/lib/jai_imageio-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/3-nofto/lib/jai_imageio-1.1.jar -------------------------------------------------------------------------------- /3-nofto/models/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/3-nofto/models/readme.txt -------------------------------------------------------------------------------- /3-nofto/src/Beam.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/3-nofto/src/Beam.java -------------------------------------------------------------------------------- /3-nofto/src/Building.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/3-nofto/src/Building.java -------------------------------------------------------------------------------- /3-nofto/src/BuildingDetectorTester.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/3-nofto/src/BuildingDetectorTester.java -------------------------------------------------------------------------------- /3-nofto/src/BuildingDetectorTrainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/3-nofto/src/BuildingDetectorTrainer.java -------------------------------------------------------------------------------- /3-nofto/src/BuildingFeatureExtractor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/3-nofto/src/BuildingFeatureExtractor.java -------------------------------------------------------------------------------- /3-nofto/src/ClassificationNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/3-nofto/src/ClassificationNode.java -------------------------------------------------------------------------------- /3-nofto/src/ClassificationTree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/3-nofto/src/ClassificationTree.java -------------------------------------------------------------------------------- /3-nofto/src/ImgViewer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/3-nofto/src/ImgViewer.java -------------------------------------------------------------------------------- /3-nofto/src/MatchPolygon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/3-nofto/src/MatchPolygon.java -------------------------------------------------------------------------------- /3-nofto/src/MultiChannelImage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/3-nofto/src/MultiChannelImage.java -------------------------------------------------------------------------------- /3-nofto/src/PolygonFeatureExtractor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/3-nofto/src/PolygonFeatureExtractor.java -------------------------------------------------------------------------------- /3-nofto/src/PolygonMatcherTrainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/3-nofto/src/PolygonMatcherTrainer.java -------------------------------------------------------------------------------- /3-nofto/src/RandomForestBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/3-nofto/src/RandomForestBuilder.java -------------------------------------------------------------------------------- /3-nofto/src/RandomForestPredictor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/3-nofto/src/RandomForestPredictor.java -------------------------------------------------------------------------------- /3-nofto/src/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/3-nofto/src/Util.java -------------------------------------------------------------------------------- /3-nofto/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/3-nofto/test.sh -------------------------------------------------------------------------------- /3-nofto/test_one_city.sh: -------------------------------------------------------------------------------- 1 | java -Xmx160g -cp "./bin:./lib/*" BuildingDetectorTester "$1" "$2" 2 | -------------------------------------------------------------------------------- /3-nofto/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/3-nofto/train.sh -------------------------------------------------------------------------------- /3-nofto/train_one_city_a.sh: -------------------------------------------------------------------------------- 1 | java -Xmx160g -cp "./bin:./lib/*" BuildingDetectorTrainer "$1" 2 | -------------------------------------------------------------------------------- /3-nofto/train_one_city_b.sh: -------------------------------------------------------------------------------- 1 | java -Xmx160g -cp "./bin:./lib/*" PolygonMatcherTrainer "$1" 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/README.md -------------------------------------------------------------------------------- /solution_descriptions/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/solution_descriptions/.DS_Store -------------------------------------------------------------------------------- /solution_descriptions/1-XD_XD.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/solution_descriptions/1-XD_XD.docx -------------------------------------------------------------------------------- /solution_descriptions/2-wleite.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/solution_descriptions/2-wleite.docx -------------------------------------------------------------------------------- /solution_descriptions/3-nofto.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceNetChallenge/BuildingDetectors_Round2/HEAD/solution_descriptions/3-nofto.docx --------------------------------------------------------------------------------