├── .gitignore ├── BOM_uk.md ├── BOM_us.md ├── README.md ├── arduino └── rc_driver │ └── rc_driver.ino ├── rpi ├── stream_sensor_data.py ├── stream_video.py └── utils.py ├── server ├── auto_driver.py ├── cascade_classifiers │ ├── stop_sign.xml │ └── traffic_light.xml ├── collect_data.py ├── collected_images │ └── README.md ├── data_set │ └── README.md ├── mlp_training.py └── mlp_xml │ └── README.md ├── test ├── capture_sensor_data_server_test.py ├── capture_video_server_test.py ├── car_control_test.py ├── client.py └── server.py └── utils ├── __init__.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidroopdaska/SelfDrivingRCCar/HEAD/.gitignore -------------------------------------------------------------------------------- /BOM_uk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidroopdaska/SelfDrivingRCCar/HEAD/BOM_uk.md -------------------------------------------------------------------------------- /BOM_us.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidroopdaska/SelfDrivingRCCar/HEAD/BOM_us.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidroopdaska/SelfDrivingRCCar/HEAD/README.md -------------------------------------------------------------------------------- /arduino/rc_driver/rc_driver.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidroopdaska/SelfDrivingRCCar/HEAD/arduino/rc_driver/rc_driver.ino -------------------------------------------------------------------------------- /rpi/stream_sensor_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidroopdaska/SelfDrivingRCCar/HEAD/rpi/stream_sensor_data.py -------------------------------------------------------------------------------- /rpi/stream_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidroopdaska/SelfDrivingRCCar/HEAD/rpi/stream_video.py -------------------------------------------------------------------------------- /rpi/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidroopdaska/SelfDrivingRCCar/HEAD/rpi/utils.py -------------------------------------------------------------------------------- /server/auto_driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidroopdaska/SelfDrivingRCCar/HEAD/server/auto_driver.py -------------------------------------------------------------------------------- /server/cascade_classifiers/stop_sign.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidroopdaska/SelfDrivingRCCar/HEAD/server/cascade_classifiers/stop_sign.xml -------------------------------------------------------------------------------- /server/cascade_classifiers/traffic_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidroopdaska/SelfDrivingRCCar/HEAD/server/cascade_classifiers/traffic_light.xml -------------------------------------------------------------------------------- /server/collect_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidroopdaska/SelfDrivingRCCar/HEAD/server/collect_data.py -------------------------------------------------------------------------------- /server/collected_images/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/data_set/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/mlp_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidroopdaska/SelfDrivingRCCar/HEAD/server/mlp_training.py -------------------------------------------------------------------------------- /server/mlp_xml/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/capture_sensor_data_server_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidroopdaska/SelfDrivingRCCar/HEAD/test/capture_sensor_data_server_test.py -------------------------------------------------------------------------------- /test/capture_video_server_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidroopdaska/SelfDrivingRCCar/HEAD/test/capture_video_server_test.py -------------------------------------------------------------------------------- /test/car_control_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidroopdaska/SelfDrivingRCCar/HEAD/test/car_control_test.py -------------------------------------------------------------------------------- /test/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidroopdaska/SelfDrivingRCCar/HEAD/test/client.py -------------------------------------------------------------------------------- /test/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidroopdaska/SelfDrivingRCCar/HEAD/test/server.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidroopdaska/SelfDrivingRCCar/HEAD/utils/utils.py --------------------------------------------------------------------------------