├── .gitignore ├── README.md ├── classification ├── README.md ├── data │ ├── create_finetune_data.py │ ├── generate_data.py │ ├── residential_occupancy_types.json │ └── split_data.py ├── output │ ├── labels.json │ ├── labels_0.json │ ├── labels_100.json │ ├── labels_1000.json │ ├── labels_10000.json │ ├── labels_50.json │ ├── labels_500.json │ ├── preds.json │ ├── preds_0.json │ ├── preds_100.json │ ├── preds_1000.json │ ├── preds_10000.json │ ├── preds_50.json │ ├── preds_500.json │ └── result.json ├── pred_compare.py └── train.py ├── detection ├── README.md ├── __pycache__ │ └── models.cpython-36.pyc ├── assets │ ├── dog.png │ ├── giraffe.png │ ├── messi.png │ └── traffic.png ├── config │ ├── res.data │ ├── yolov3-tiny.cfg │ └── yolov3.cfg ├── data │ ├── generate_data.py │ ├── make_config.py │ ├── res.names │ └── residential_occupancy_types.json ├── detect.py ├── models.py ├── report_1.pdf ├── requirements.txt ├── test.py ├── train.py ├── utils │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── datasets.cpython-36.pyc │ │ ├── parse_config.cpython-36.pyc │ │ └── utils.cpython-36.pyc │ ├── datasets.py │ ├── parse_config.py │ └── utils.py └── visualize.py └── new_detection ├── .gitignore ├── best_practice.txt ├── config ├── res.data ├── test_config.txt └── train_config.txt ├── dataset.py ├── eval.py ├── eval_result.json ├── model.py ├── train.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/README.md -------------------------------------------------------------------------------- /classification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/classification/README.md -------------------------------------------------------------------------------- /classification/data/create_finetune_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/classification/data/create_finetune_data.py -------------------------------------------------------------------------------- /classification/data/generate_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/classification/data/generate_data.py -------------------------------------------------------------------------------- /classification/data/residential_occupancy_types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/classification/data/residential_occupancy_types.json -------------------------------------------------------------------------------- /classification/data/split_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/classification/data/split_data.py -------------------------------------------------------------------------------- /classification/output/labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/classification/output/labels.json -------------------------------------------------------------------------------- /classification/output/labels_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/classification/output/labels_0.json -------------------------------------------------------------------------------- /classification/output/labels_100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/classification/output/labels_100.json -------------------------------------------------------------------------------- /classification/output/labels_1000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/classification/output/labels_1000.json -------------------------------------------------------------------------------- /classification/output/labels_10000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/classification/output/labels_10000.json -------------------------------------------------------------------------------- /classification/output/labels_50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/classification/output/labels_50.json -------------------------------------------------------------------------------- /classification/output/labels_500.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/classification/output/labels_500.json -------------------------------------------------------------------------------- /classification/output/preds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/classification/output/preds.json -------------------------------------------------------------------------------- /classification/output/preds_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/classification/output/preds_0.json -------------------------------------------------------------------------------- /classification/output/preds_100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/classification/output/preds_100.json -------------------------------------------------------------------------------- /classification/output/preds_1000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/classification/output/preds_1000.json -------------------------------------------------------------------------------- /classification/output/preds_10000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/classification/output/preds_10000.json -------------------------------------------------------------------------------- /classification/output/preds_50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/classification/output/preds_50.json -------------------------------------------------------------------------------- /classification/output/preds_500.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/classification/output/preds_500.json -------------------------------------------------------------------------------- /classification/output/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/classification/output/result.json -------------------------------------------------------------------------------- /classification/pred_compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/classification/pred_compare.py -------------------------------------------------------------------------------- /classification/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/classification/train.py -------------------------------------------------------------------------------- /detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/detection/README.md -------------------------------------------------------------------------------- /detection/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/detection/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /detection/assets/dog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/detection/assets/dog.png -------------------------------------------------------------------------------- /detection/assets/giraffe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/detection/assets/giraffe.png -------------------------------------------------------------------------------- /detection/assets/messi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/detection/assets/messi.png -------------------------------------------------------------------------------- /detection/assets/traffic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/detection/assets/traffic.png -------------------------------------------------------------------------------- /detection/config/res.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/detection/config/res.data -------------------------------------------------------------------------------- /detection/config/yolov3-tiny.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/detection/config/yolov3-tiny.cfg -------------------------------------------------------------------------------- /detection/config/yolov3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/detection/config/yolov3.cfg -------------------------------------------------------------------------------- /detection/data/generate_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/detection/data/generate_data.py -------------------------------------------------------------------------------- /detection/data/make_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/detection/data/make_config.py -------------------------------------------------------------------------------- /detection/data/res.names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/detection/data/res.names -------------------------------------------------------------------------------- /detection/data/residential_occupancy_types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/detection/data/residential_occupancy_types.json -------------------------------------------------------------------------------- /detection/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/detection/detect.py -------------------------------------------------------------------------------- /detection/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/detection/models.py -------------------------------------------------------------------------------- /detection/report_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/detection/report_1.pdf -------------------------------------------------------------------------------- /detection/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/detection/requirements.txt -------------------------------------------------------------------------------- /detection/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/detection/test.py -------------------------------------------------------------------------------- /detection/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/detection/train.py -------------------------------------------------------------------------------- /detection/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /detection/utils/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/detection/utils/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /detection/utils/__pycache__/datasets.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/detection/utils/__pycache__/datasets.cpython-36.pyc -------------------------------------------------------------------------------- /detection/utils/__pycache__/parse_config.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/detection/utils/__pycache__/parse_config.cpython-36.pyc -------------------------------------------------------------------------------- /detection/utils/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/detection/utils/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /detection/utils/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/detection/utils/datasets.py -------------------------------------------------------------------------------- /detection/utils/parse_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/detection/utils/parse_config.py -------------------------------------------------------------------------------- /detection/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/detection/utils/utils.py -------------------------------------------------------------------------------- /detection/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/detection/visualize.py -------------------------------------------------------------------------------- /new_detection/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/new_detection/.gitignore -------------------------------------------------------------------------------- /new_detection/best_practice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/new_detection/best_practice.txt -------------------------------------------------------------------------------- /new_detection/config/res.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/new_detection/config/res.data -------------------------------------------------------------------------------- /new_detection/config/test_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/new_detection/config/test_config.txt -------------------------------------------------------------------------------- /new_detection/config/train_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/new_detection/config/train_config.txt -------------------------------------------------------------------------------- /new_detection/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/new_detection/dataset.py -------------------------------------------------------------------------------- /new_detection/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/new_detection/eval.py -------------------------------------------------------------------------------- /new_detection/eval_result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/new_detection/eval_result.json -------------------------------------------------------------------------------- /new_detection/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/new_detection/model.py -------------------------------------------------------------------------------- /new_detection/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/new_detection/train.py -------------------------------------------------------------------------------- /new_detection/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfeng997/satellite_building_detection.pytorch/HEAD/new_detection/utils.py --------------------------------------------------------------------------------