English 中文(简体)
不同图像的对应面[封闭]
原标题:Matching face from different images [closed]
  • 时间:2012-04-25 23:03:15
  •  标签:
  • c++
  • opencv

我开始在开放式中心。 我发现,我已经成功面对,现在我正试图做的是,从两个不同的图像中调和脸谱,归还真实或虚假的价值。 如何在使用++的开放式中心这样做?

问题回答

Face recognition is an advanced method.

There is a website devoted for this : http://www.face-rec.org/

它包含许多研究论文、算法等,以面对承认。 你可以发现类似地点。

Two popular method used for this purposes are:

1. Eigen faces:

理解这一点,以下维基百科的通过是好的:

A set of eigenfaces can be generated by performing a mathematical process called principal component analysis (PCA) on a large set of images depicting different human faces. Informally, eigenfaces can be considered a set of "standardized face ingredients", derived from statistical analysis of many pictures of faces. Any human face can be considered to be a combination of these standard faces. For example, one s face might be composed of the average face plus 10% from eigenface 1, 55% from eigenface 2, and even -3% from eigenface 3. Remarkably, it does not take many eigenfaces combined together to achieve a fair approximation of most faces. Also, because a person s face is not recorded by a digital photograph, but instead as just a list of values (one value for each eigenface in the database used), much less space is taken for each person s face.

First 32 eigen face of a face (obtained from

“entergraph

可在

2. Fisher Faces:

This uses another method called Linear Discriminant Analysis. For more details visit: http://www.scholarpedia.org/article/Fisherfaces

例如:第一4名渔民面临形象

enter image description here

<><>Finally, 您可在上找到其C++的实施工作。 ∗∗∗∗∗

For your information, the above implementation has been added to OpenCV mainstream from version 2.4-beta onwards (View changelog here). Even the codes are included in cpp samples that come with OpenCV 2.4-beta.





相关问题
Undefined reference

I m getting this linker error. I know a way around it, but it s bugging me because another part of the project s linking fine and it s designed almost identically. First, I have namespace LCD. Then I ...

C++ Equivalent of Tidy

Is there an equivalent to tidy for HTML code for C++? I have searched on the internet, but I find nothing but C++ wrappers for tidy, etc... I think the keyword tidy is what has me hung up. I am ...

Template Classes in C++ ... a required skill set?

I m new to C++ and am wondering how much time I should invest in learning how to implement template classes. Are they widely used in industry, or is this something I should move through quickly?

Print possible strings created from a Number

Given a 10 digit Telephone Number, we have to print all possible strings created from that. The mapping of the numbers is the one as exactly on a phone s keypad. i.e. for 1,0-> No Letter for 2->...

typedef ing STL wstring

Why is it when i do the following i get errors when relating to with wchar_t? namespace Foo { typedef std::wstring String; } Now i declare all my strings as Foo::String through out the program, ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

Window iconification status via Xlib

Is it possible to check with the means of pure X11/Xlib only whether the given window is iconified/minimized, and, if it is, how?

热门标签