├── .gitignore ├── README.md ├── generate-TFFormat.py ├── model ├── labels.pbtxt ├── model.config └── model.pb ├── predict.py ├── result.png └── utils ├── anchors_analysis.py ├── boxes.png └── labels_iou_distrib.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Stefano/Remote-Sensing-Analysis/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Stefano/Remote-Sensing-Analysis/HEAD/README.md -------------------------------------------------------------------------------- /generate-TFFormat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Stefano/Remote-Sensing-Analysis/HEAD/generate-TFFormat.py -------------------------------------------------------------------------------- /model/labels.pbtxt: -------------------------------------------------------------------------------- 1 | item { 2 | id: 1 3 | name: 'car' 4 | } 5 | -------------------------------------------------------------------------------- /model/model.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Stefano/Remote-Sensing-Analysis/HEAD/model/model.config -------------------------------------------------------------------------------- /model/model.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Stefano/Remote-Sensing-Analysis/HEAD/model/model.pb -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Stefano/Remote-Sensing-Analysis/HEAD/predict.py -------------------------------------------------------------------------------- /result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Stefano/Remote-Sensing-Analysis/HEAD/result.png -------------------------------------------------------------------------------- /utils/anchors_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Stefano/Remote-Sensing-Analysis/HEAD/utils/anchors_analysis.py -------------------------------------------------------------------------------- /utils/boxes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Stefano/Remote-Sensing-Analysis/HEAD/utils/boxes.png -------------------------------------------------------------------------------- /utils/labels_iou_distrib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R-Stefano/Remote-Sensing-Analysis/HEAD/utils/labels_iou_distrib.py --------------------------------------------------------------------------------