Awesome
Deprecation Notice
The Danesfield-App web application has been superseded by https://github.com/girder/Danesfield. This repo is deprecated, see the original README below.
Danesfield App
The Danesfield App is a web application for running the Danesfield algorithms and visualizing results. Danesfield addresses the algorithmic challenges of the IARPA CORE3D program by reconstructing semantically meaningful 3D models of buildings and other man-made structures from satellite imagery.
Video demo
<kbd><img src="https://user-images.githubusercontent.com/3123478/49317901-5b759500-f4c4-11e8-9f65-936b718e5f65.gif" /></kbd>
Screenshots
<kbd><img src="screenshot_1.png" /></kbd>
<kbd><img src="screenshot_2.png" /></kbd>
<kbd><img src="screenshot_3.png" /></kbd>
Server
Requirements
- Conda
- Docker (docker-compose also recommended)
Setup
- Run
conda/install.sh
. This will create and active a new conda environment, as well as install the required packages. - Pull the publicly available Danesfield image on Docker Hub
- Run
pip install -e server
to install girder and it's - (Optional) To setup girder with some default settings, you can run
python server/init_girder.py
. A default admin user and password are included in that script. If you would like to configure this, you can export theGIRDER_ADMIN_USER
andGIRDER_ADMIN_PASS
environment varibales before running the above command.
Running dependent services/applicatons
Girder requires that MongoDB and RabbitMQ are running. If you've installed docker-compose
, this can be done easily:
docker-compose up -d
You can stop these services by running docker-compose stop
, and remove all associated data by runnning docker-compose down
.
Running the application/services
Run the following commands separately on the machine you wish to host the application on (within the conda environment):
girder serve --host 0.0.0.0
python -m girder_worker -l info --concurrency 4
Girder should now be running.
Configuration
Models used:
- UNet Semantic Segmentation
- Building Segmentation
- Material Classification
- Roof Geon Extraction
- Run Metrics
Upload all models to the models
folder within the core3d
collection, creating it if it doesn't exist.
Client Setup
See here