Click here to Skip to main content
15,867,686 members
Articles / Desktop Programming / WPF
Article

Fuzzy Logic - Obstacle Avoidance - WPF

Rate me:
Please Sign up or sign in to vote.
4.79/5 (27 votes)
13 Jul 2008CDDL6 min read 67K   2.5K   58   8
An fuzzy logic control system for a moving object to avoid obstacles.

Introduction

Sample Image - maximum width is 600 pixels

Download source - 395 Kb

Yay, my second article for code project. Like my first article this one was also one of my assignments for AI at university and I thought I'd try this one out in WPF using C# as well.

Fuzzy logic - a dictionary like description:
"Fuzzy logic is a mathematical approach to problem solving. It excels in producing exact results from imprecise data, and is especially useful in computers and electronic applications.

Fuzzy logic differs from classical logic in that statements are no longer black or white, true or false, on or off. In traditional logic an object takes on a value of either zero or one; in fuzzy logic, a statement can assume any real value between 0 and 1, representing the degree to which an element belongs to a given set.

The human brain can reason with uncertainties, vagueness, and judgments. Computers can only manipulate precise valuations. Fuzzy logic is an attempt to combine the two techniques." - Paul Wang, Professor of Electrical Engineering

That about sums it up quite nicely. So fuzzy logic is just logic that takes imprecise inputs and ouptus a precise output - a precise problem solving methodology. So lets go about creating a fuzzy logic system for an obstacle avoidance system.

Fuzzy Logic System

Inputs to a fuzzy system could say the temperature in a room or the color of a particular pixel on screen. The fuzzy logic system works by applying certain rules to the input values to find out the degree that the particular input matches a set of values defined by a rule.

Image 2

Image 3
http://blog.peltarion.com/2006/10/25/fuzzy-math-part-1-the-theory/

By looking at the input fuzzy sets above, a person who is 165cm according to the boolean representation, the person would by short. But the fuzzy logic would output that the person is partly short and partly average. The input value 165 is a member of both the short and average domain. So a Fuzzy Logic recognizes not only clear-cut, black-and-white alternatives but also the infinite gradations in between. So in Fuzzy terms the person would classified within a range of [0, 1] as small to a degree of 0.4, and average to a degree of 0.6.

Designing a Fuzzy Inference System

So lets go about designing a fuzzy system for obstacle avoidance of the car in my assignment.

Fuzzy Inference System
Fuzzy Infrence System

First we need to define the input and output variables of the fuzzy system.

Inputs:
  1. Angle of the obstacle relative to the direction my car is travelling in
  2. Distance to between the obstance and my car
Ouputs:
  1. Adjustment Angle of the heading of the car to avoid possible collisions with obstacles

Now for the actual parameters of the fuzzy system in 3 simple steps:

  1. Specify the fuzzy sets to be associated with each variable
  2. Decide on what the fuzzy rules are going to be (can be described linguistically)
  3. Specify the shape of the membership functions

1. Fuzzy set

For our input variables - angle could be described as: {small, medium, large} and distance could be described as: {near, far, very far}. Refer to the diagram below, it should make more sense.

Image 5

2. Rule Evaluation

A rule can be written linguistically like so:

if (obstacle angle small) and (obstacle distance near) then (turn sharply).
We can represent all possible combinations of our input variables in a fuzzy associative memory matrix.

Image 6

Preset Values (determined by you):

x1 = 5, x2 = 4, x3 = 3, x4 = 4, x5 = 3, x6 = 2, x7 = 3, x8 = 2, x9 = 1
There is pattern here which you should have picked up by looking at the shades and how they form a diagnol pattern. Usually X2 and X4 will have matching values so you could combine that into a variable say MF as you might usually want to turn the output the same value if the angle is medium and the distance is small or if the distance is far and the angle is small. These table will make sense in the next little section.

Previously I described input variables being members of our fuzzy set to varying degrees of membership. Now if you combine the membership values (between 0 and 1) of all possible combinations that this matrix represents and multiply by a preset constant from X1 to X9 you should receive an output.

3. Defuzzification

So lets say our obstacle is very close in distance and the angle is small so only the the both our input variables will will have a membership of 1 with both angle {small} and distance {large}. All the other possible set will yeild a membership value of 0. So to make it really simple you basically multiply all the membership values and then add all of them and divide by the sum of all the preset values from you FAMM. So for our example you would get X1*(1 x 1) + X2(0 x 0)... / X1 + ... + X9. And this ladies and gentlemen outputs a crisp value of the angle to adjust. Simple as that.

How I implemented this solution using WPF

Well the best way to find that out is just to dig in through the code. But if you've seen my previous article ( 8 Puzzle ) it uses the same animation technique and uses the animation complete event handler to calculate the adjustment angle between each iteration. Maybe a good extension to this would be to have the Fuzzy Logic running on a separate thread instead of making incrementally doing it.

As far as instructions are concerned, you just click to place the target somewhere and the car will seek the target whilst avoiding the little monsters. There is glitch if you set a new target before the car stops moving.

I will modify this article soon to show a bit more of a detailed walkthrough of the code but it is really well commented and checking out the code and then reading my explanation might be a better way to understand it (or not, i'm just guessing here).

It has been a while since I've done this paper so there will be some minor corrections made once I have the time to properly proof read and make sure I've explained things properly.

Credits

My lecturer Napoleon Reyes. I'm referring to his lectures as I'm writing this article so thanks Napoloen.

History

Nothing as of yet...

Any feedback/comments that you have would be very much appreciated not to mention motivating =) So please feel free to leave a comment or two, even just to say sup!

License

This article, along with any associated source code and files, is licensed under The Common Development and Distribution License (CDDL)


Written By
New Zealand New Zealand
Hey, i'm a student doing my final few papers at Massey Univeristy, Auckalnd, New Zealand =). My degree is a Bachelor of Engineering, majoring as a Software Engineer. I'll be the last B.E. Software Engineer to graduate from Massey, Albany campus... so u know, i'm pretty exclusive kinda =P

I pretty into programming. I'm woking full-time while I'm finishing of the last of my degree.

That's about all I want to share for now I think!

Comments and Discussions

 
GeneralMy vote of 5 Pin
Kanasz Robert6-Nov-12 0:01
professionalKanasz Robert6-Nov-12 0:01 
GeneralVery cool but would be nice to see some code actually in the article too Pin
Sacha Barber20-May-11 20:48
Sacha Barber20-May-11 20:48 
Generalhi Pin
james aaron fanlo25-Jan-11 6:35
james aaron fanlo25-Jan-11 6:35 
GeneralBookmarked for later reading Pin
DaveAuld3-Jan-11 12:01
professionalDaveAuld3-Jan-11 12:01 
Generalerrors ... [modified] Pin
mBenkirane15-Nov-09 20:28
mBenkirane15-Nov-09 20:28 
GeneralRunning the project Pin
Member 447464818-May-09 20:09
Member 447464818-May-09 20:09 
GeneralFuzzy Logic Library for Microsoft .Net Pin
Dmitrie21-Mar-09 8:07
Dmitrie21-Mar-09 8:07 
GeneralRe: Fuzzy Logic Library for Microsoft .Net Pin
Member 1019550511-Dec-20 8:36
professionalMember 1019550511-Dec-20 8:36 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.