Obstacle Avoidance
Introduction. The aim of this project is for our car to complete a full lap around the circuit without colliding with any of the obstacles placed along it. We will be using the VFF (Virtual Forces) method. Our only sensors will be an array of lasers located at the front of the car. Although our code will be (again) reactive-method-based, we will require a map to show us the location of the targets we are to reach. Our global locating system will also be constantly providing us with the location of the robot. Despite how similar this exercise might seem to the Follow Line project, their implementations are completely different. For this exercise we are provided with an array of lasers instead of a camera, so there will be no filtering and no colour spaces. Our lasers will measure distance in a specific direction and will return a number. VFF Explained. As I said, we will be using this method to compute both the forward speed and the turn speed of the robot. This method ca...