I have two images, i convert them to gray scale and find out the Local Binary Pattern for both of them. How can i compare the histograms to see if they match?. What is the formula? (also what is Chi-Square? - came across it when researching)
-
Are you looking for face detection or face recognitions? Detection means finding any face in a picture, recognition means finding a specific persone (e.g Your grandma) in a face picture.Sam– Sam2012-07-31 06:19:05 +00:00Commented Jul 31, 2012 at 6:19
-
hi, i am looking to perform face recognition using local binary pattern histogram.Rory Lester– Rory Lester2012-07-31 10:00:44 +00:00Commented Jul 31, 2012 at 10:00
Add a comment
|
1 Answer
Regarding Chi-Square: The wikipedia page is very good and very thorough.
You would use a "chi-squared test for goodness of fit" to compare distributions. Histograms are "color distributions" so this test is applicable to your problem.
The one you want to use for your two distributions is the Pearson's chi-squared test.