Abhishek kumar
Abhishek kumar

Reputation: 2676

How is Neural Networks Implemented in OpenCv?

I want to implement Face Recognition using Neural Networks in OpenCv in visual studio. I know that implementing Neural Networks in Matlab is quite easy but i have almost complemented my face recognition project in Visual Studio.I have seen OpenCv MLP library functions but i dont understand how to use them.Some example codes would be highly appreciated.

Upvotes: 0

Views: 6263

Answers (1)

Ove
Ove

Reputation: 6317

You can take a look at OpenCV's tutorials page, especially the machine learning tutorials.

Unfortunately, at the time of writing, there are only two tutorials discussing support vector machines on that page.

Another place you can look is the Emgu CV wiki. Emgu CV is a .NET wrapper over OpenCV. That means that you can use the OpenCV library in C# or other .NET languages. They have a section that contains machine learning examples. The examples are written in C#, but they use the same functions in the C++ OpenCV. Therefore, you can easily translate them to C++.

Upvotes: 2

Related Questions