what are the algorithms to use for recognizing objects? [closed] - c#

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 13 years ago.
Using Artificial intelligence, what should be the algorithms for recognizing objects??
can Neuural network recognize objects??

The detection of Haar-like features is a popular way of recognizing objects in computer vision and is used by the OpenCV library. Facial recognition is usually implemented using this technique.
The Wikipedia page on Object recognition also has some good starting points to learn some of the techniques used.

Related

Pattern for writing Chart Components [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I have to write a chart component from scratch in Silverlight 3 and wonder if anybody knows if there are any design patterns, guidelines, tutorials that can help with the process?
Take a look a the Silverlight Toolkit. It is open-source and has chart controls written by Microsoft. This is probably the closest thing to design guidelines you can get.

How to develop web based voice chat app in C# [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I'm looking for a set of library in C# that could help me develop a web based voice chat app. I would prefer to avoid using Flash or Silverlight if i can.
From searching the internet i found WebRTC, libjingle, FreeSwitch, Asterisk could possibly provide what i need, but none is written for C#.
Could someone point me to the right direction ?

Antivirus algorithm in DataStructure [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
I want to make a Antivirus Software in Data Structure using C#. So help needed for the Algorithm.
You can find algorithms here: http://sourceforge.net/projects/clamav/
The code is writted for unix but as you are interested in algorithm only so it will work for you. It's a popular antivirus for UNIX called "Clam Antivirus".

what is the best technique of using OOP? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
Can u give a real sample scenario using OOP structure for developing programs.
Would appreciate your response.
Thank you,
OOP principle - program to interfaces
What does "program to interfaces, not implementations" mean?
For more of OOAD, read this book. It explains majority OOAD principles and techniques very well.
(source: headfirstlabs.com)

how to develop AForge.NET for Computer Vision [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'm trying to develop a program to recognize a hand gestures and base on the hand gestures, run some commands or move the mouse. how can I use AForge.NET with C#??? it is possible to do that? is there any tutorial out there???? Please help
Here is an article by the author of AForge.NET, although it is not about gesture detection
A gesture sample on codeproject (not using AForge.NET) or another sample (this time using AForge.NET) showing how to uset the library. Hope it helps.

Categories