-1

hye, can somebody give suggestion where is the best forum or website that i can learn fuzzy logic tutorial in C#. i want to learn about road detection, edge detection and image processing

kaki
  • 25
  • 1
  • 1
  • 1
  • I think posting this at dsp.stackexchange.com would have been better. – someguy Jul 04 '12 at 20:12
  • Have you searched the internet? Popular search engines find pages with names like "Introduction to C# and Fuzzy Logic". – reuben Jul 04 '12 at 20:13
  • 1
    @someguy: It could probably go on either site. After all, the line is kind of fuzz.. er, blurry. – Chris Laplante Jul 04 '12 at 20:13
  • @reuben i tried many keyword but not all link related to what i need – kaki Jul 04 '12 at 20:37
  • 1
    @kaki That's fair; in the future, though, it would be helpful if you could mention what you did look at and why it was not helpful for what you need. That would help us make sure we're not just doing the same search that you did to answer your question. It will also ensure best results in the answers you get... – reuben Jul 04 '12 at 20:39

2 Answers2

11

The idea behind fuzzy logic is very simple. I'll attempt an explanation.

So in normal logic you use comparisons such as "i == 1" or " q > 3 and q < 4".

Fuzzy logic, in general is based around the idea that you can have partial matches or partial truths.

So, if I'm searching for someone with the last name "Hamilton" and I type in "Hamelton" instead, normal logic would say it was not a match.
Fuzzy logic could return a result like this:

Hamilton has 8 letters, 7 out of the 8 letters match, so that is a .875 match if you divide 7 by 8.

According to some business rules I just made up, anything that has a .75 or greater would constitute a match.

Also, you could blend matching "rules" together and come up with a single scalar to determine a fuzzy match as well.

Hope that helps!!

Joseph Hamilton
  • 435
  • 2
  • 7
2

Try AForge.Net -- they appear to have what you're looking for.

Austin Salonen
  • 49,173
  • 15
  • 109
  • 139
  • Thanks for the respond mate but i already try it. That site help me at certain degree. – kaki Jul 04 '12 at 20:29