├── .gitignore ├── AirSimClient.py ├── LICENSE.md ├── README.md ├── airsim.png ├── collision_testing.py ├── collision_training.py ├── image_collection.py ├── image_helper.py └── tf_softmax_layer.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | carpix/ 3 | logistic_logs/ 4 | data/ 5 | *.pkl 6 | -------------------------------------------------------------------------------- /AirSimClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simondlevy/AirSimTensorFlow/HEAD/AirSimClient.py -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simondlevy/AirSimTensorFlow/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simondlevy/AirSimTensorFlow/HEAD/README.md -------------------------------------------------------------------------------- /airsim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simondlevy/AirSimTensorFlow/HEAD/airsim.png -------------------------------------------------------------------------------- /collision_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simondlevy/AirSimTensorFlow/HEAD/collision_testing.py -------------------------------------------------------------------------------- /collision_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simondlevy/AirSimTensorFlow/HEAD/collision_training.py -------------------------------------------------------------------------------- /image_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simondlevy/AirSimTensorFlow/HEAD/image_collection.py -------------------------------------------------------------------------------- /image_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simondlevy/AirSimTensorFlow/HEAD/image_helper.py -------------------------------------------------------------------------------- /tf_softmax_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simondlevy/AirSimTensorFlow/HEAD/tf_softmax_layer.py --------------------------------------------------------------------------------