1

i am new to ASP.Net I want to implement project which is need to every random time web cam captures images from the client side. And I want to send those capture images to Server, There i want to count no of human faces found in that images and return messages to clients.

Here I am using Silver light plug in for captures images .....

Please if any suggestions or any ideas please let me know.. and if any English mistakes please edit the question

Radix
  • 121
  • 1
  • 10
  • I do not have much idea about this but this link might help you :- http://kodefun.junian.net/2011/07/camera-face-detection-in-c-using-emgu.html – Pranav Jan 02 '13 at 05:43

1 Answers1

1

You can get the number of faces from the images. Do the following steps

1- Capture the image

2- Send it to the server via Stream or some other method

3- Follow this tutorial http://www.codeproject.com/Articles/462527/Camera-Face-Detection-in-Csharp-Using-Emgu-CV-Open

The tutorial uses Emgu CV library. It is for .net and it works.

Behroz Sikander
  • 3,885
  • 3
  • 22
  • 36