In order to achieve our goals, various tools were used. These tools can be divided into different categories.
Programs in a mobile robot is often a constant exchange between the robot and its environment. The robot needs to feel its environment by using sensors and it needs to modify its environment by moving, by speaking or by executing other tasks. The first category of tools used is the library that controls the robot. This library allowed us to communicate with the environment by controlling the motors and the speaker, for instance.
We also want our robot to learn how to follow a corridor or how to estimate a distance by judging the changes in a sequence of images. In order to perform the learning task, we used neural networks. Two kinds of neural networks were used. A simple Pattern Associator was used to learn linearly separable problems like a corridor following. In order to learn more complicated tasks, like distance estimation, we used a multi-layer Perceptron to perform the learning because it has a more general mapping property.
We also used vision tools to process images which come from the CCD camera. We used a Difference of Gaussian edge detector to compute an edge-detected image. This image can then be processed by other tools to extract features from it. We could then use histograms to detect vertical and horizontal lines. This gives us features for the corridor following task when the camera looks in a fixed direction. When the camera moves with the robot, we have to preprocess the images with a Hough transform and we can then use histograms in order to bring good features to the neural networks.
These tools were combined in order to perform two tasks. A corridor follower has been successfully built by learning features of images extracted by the histogram of an edge-detected image. We also built a robot that is able to estimate its own motion using its vision system. The program learned how to map the values that were returned by the odometry system with the visual sequences of pictures taken by the robot.