├── .gitignore ├── LICENSE ├── README.md ├── README_PT.md ├── can_interface.py ├── car_emulator.py ├── constants.py ├── controller.py ├── controller2.py ├── main.py ├── res ├── 1587991132.png ├── Untitled 1.png ├── Untitled 2.png ├── Untitled 3.png ├── Untitled 4.png ├── Untitled 5.png ├── Untitled 6.png ├── Untitled.png └── minimalist_driverless.png ├── tracks.py ├── utils.py ├── video.py ├── viewer.py └── vision_emulator.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unicamp-E-Racing/driverless-2019/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unicamp-E-Racing/driverless-2019/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unicamp-E-Racing/driverless-2019/HEAD/README.md -------------------------------------------------------------------------------- /README_PT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unicamp-E-Racing/driverless-2019/HEAD/README_PT.md -------------------------------------------------------------------------------- /can_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unicamp-E-Racing/driverless-2019/HEAD/can_interface.py -------------------------------------------------------------------------------- /car_emulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unicamp-E-Racing/driverless-2019/HEAD/car_emulator.py -------------------------------------------------------------------------------- /constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unicamp-E-Racing/driverless-2019/HEAD/constants.py -------------------------------------------------------------------------------- /controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unicamp-E-Racing/driverless-2019/HEAD/controller.py -------------------------------------------------------------------------------- /controller2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unicamp-E-Racing/driverless-2019/HEAD/controller2.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unicamp-E-Racing/driverless-2019/HEAD/main.py -------------------------------------------------------------------------------- /res/1587991132.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unicamp-E-Racing/driverless-2019/HEAD/res/1587991132.png -------------------------------------------------------------------------------- /res/Untitled 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unicamp-E-Racing/driverless-2019/HEAD/res/Untitled 1.png -------------------------------------------------------------------------------- /res/Untitled 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unicamp-E-Racing/driverless-2019/HEAD/res/Untitled 2.png -------------------------------------------------------------------------------- /res/Untitled 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unicamp-E-Racing/driverless-2019/HEAD/res/Untitled 3.png -------------------------------------------------------------------------------- /res/Untitled 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unicamp-E-Racing/driverless-2019/HEAD/res/Untitled 4.png -------------------------------------------------------------------------------- /res/Untitled 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unicamp-E-Racing/driverless-2019/HEAD/res/Untitled 5.png -------------------------------------------------------------------------------- /res/Untitled 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unicamp-E-Racing/driverless-2019/HEAD/res/Untitled 6.png -------------------------------------------------------------------------------- /res/Untitled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unicamp-E-Racing/driverless-2019/HEAD/res/Untitled.png -------------------------------------------------------------------------------- /res/minimalist_driverless.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unicamp-E-Racing/driverless-2019/HEAD/res/minimalist_driverless.png -------------------------------------------------------------------------------- /tracks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unicamp-E-Racing/driverless-2019/HEAD/tracks.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unicamp-E-Racing/driverless-2019/HEAD/utils.py -------------------------------------------------------------------------------- /video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unicamp-E-Racing/driverless-2019/HEAD/video.py -------------------------------------------------------------------------------- /viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unicamp-E-Racing/driverless-2019/HEAD/viewer.py -------------------------------------------------------------------------------- /vision_emulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unicamp-E-Racing/driverless-2019/HEAD/vision_emulator.py --------------------------------------------------------------------------------