5 Replies - 6609 Views - Last Post: 29 January 2010 - 05:29 AM Rate Topic: -----

Topic Sponsor:

#1 saira24  Icon User is offline

  • New D.I.C Head

Reputation: 0
  • View blog
  • Posts: 1
  • Joined: 19-January 10

face recognition system in c#

Posted 19 January 2010 - 06:37 AM

how can i start my project face recognition in c# and which library of c# is used for image processing
Is This A Good Question/Topic? 0
  • +

Replies To: face recognition system in c#

#2 SwiftStriker00  Icon User is offline

  • Microsoft Insider
  • member icon

Reputation: 299
  • View blog
  • Posts: 1,337
  • Joined: 25-December 08

Re: face recognition system in c#

Posted 19 January 2010 - 07:40 AM

try this:

http://www.codeproje...processing.aspx
Was This Post Helpful? 0
  • +
  • -

#3 finaiized  Icon User is offline

  • D.I.C Head

Reputation: 0
  • View blog
  • Posts: 84
  • Joined: 29-November 09

Re: face recognition system in c#

Posted 19 January 2010 - 04:58 PM

There isn't any free face recognition system as companies spend millions in developing one. For face detection, use EmguCV.
Was This Post Helpful? 0
  • +
  • -

#4 coolguy200  Icon User is offline

  • New D.I.C Head

Reputation: 0
  • View blog
  • Posts: 7
  • Joined: 28-January 10

Re: face recognition system in c#

Posted 28 January 2010 - 10:07 PM

I want the same idea but only to unlock something...
Was This Post Helpful? 0
  • +
  • -

#5 SwiftStriker00  Icon User is offline

  • Microsoft Insider
  • member icon

Reputation: 299
  • View blog
  • Posts: 1,337
  • Joined: 25-December 08

Re: face recognition system in c#

Posted 28 January 2010 - 10:53 PM

coolguy, have you not figured out no one is going to give you free code? Either post a job, or research and develop as much as you can, and then we will help
Was This Post Helpful? 0
  • +
  • -

#6 T.Jackson  Icon User is offline

  • D.I.C Head

Reputation: 4
  • View blog
  • Posts: 97
  • Joined: 27-January 10

Re: face recognition system in c#

Posted 29 January 2010 - 05:29 AM

View PostSwiftStriker00, on 19 Jan, 2010 - 06:40 AM, said:



He's telling you straight off the bat how to do it.

//Getting red layer
R = PreResult.GetPixel(i, j).R;
//Getting green layer
G = PreResult.GetPixel(i, j).G;
//Getting blue layer
B = PreResult.GetPixel(i, j).B;
//Formula for convert RGB 2 YCBCR
//Y = 0.299 * R + 0.587 * G + 0.114 * B;
//Cb = -0.169*R - 0.332*G + 0.500*B;
Cr = 0.500 * R - 0.419 * G - 0.081 * B;



GetPixel though? (notoriously slow)

Can't this be done using DIBs?

Trent Jackson
Was This Post Helpful? 0
  • +
  • -

Page 1 of 1