Click here to Skip to main content
15,891,529 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I need to implement single layer perceptron algorithm for facial imagesin Opencv. I have the gaussian values for training .
Can someone help with how to proceed ?
Posted

Try a Google search, there are lots of articles and samples around.
 
Share this answer
 
First and for most, do you want to do facial recognition with single layer perceptron? single layer perceptrons are not a good idea for such classification based applications. And you need to come up with appropriate features such as gabor coefficients(I don't know if gaussian values are okay) for that,compute these features and train a multi-layer perceptron using back -propagation agorithm.

see http://research.microsoft.com/en-us/um/people/zhang/papers/ijprai.pdf[^]

As for OpenCv http://opencv.willowgarage.com/documentation/cpp/neural_networks.html[^] see these documentations to help you with the implementation of the your neural network.

I assumed you wanted facial recognition and not "facial image in openCV".

Glad to help :)
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900