This is the autonomous driving project of FH Hof. The code here is the result of different thesis of students.
This is the autonomous-driving test car
We tested it using Windows 10 operating system. If you clone it to “D:\Projekte” you will have the least amount of hassle. It should however run on Linux as well.
We have some sub projects with different tasks:
If a subprojekt creates files, all of them are stored in this folder. If you clone it it should be empty
Here we manage pictures of pylons and backgrounds.
We use the images from pylon images to create training images.
We build up a neural network using the technique of transfer learning to recognize pylons from the training images. The finished neural network can then be exported as tflite or coral tflite.
The fully trained neural networks are stored here.
The code for the raspberry pi and the Arduino can be found here.
A video of a test course.
We have a separate anaconda environment for each sub project. The name of the environment is the project name. image-generator is the example environment in the following commands.
To use the commands navigate in a sub project with the anaconda prompt.
conda create -n transfer-learning python=3.5
conda info --envs
conda env create -f environment.yml
conda activate image-generator
conda remove --name image-generator --all
After a change of the environment the changes have to be saved in environment.yml.
conda env export > environment.yml