First time here? Check out the FAQ!

Ask Your Question
5

Age detection using OpenCV

asked Jul 18 '13

Piyushkp gravatar image

Hi, I have used FG-NET aging database which having 1002 images with different ages, I am using FisherFaceRecognizer to predict the age from the image but it is not giving me correct result at all infect the input image was around 30 years of age and the outcome from predict function is 7 years only.

Is there any other algorithm that can give me more correct results or i have to train some other database ?

Thanks, Piyush Patel

Preview: (hide)

1 answer

Sort by » oldest newest most voted
9

answered Jul 18 '13

updated Jul 18 '13

I'd suggest to perform some image preprocessing. Take a look at face recognition and you'll get an idea:

  • crop face region
  • normalize face region based on eye coordinates
  • histogram equalization or something similar
  • Apply LBP to a NxM non-overlapping regions (or another algorithm)

I think you need more images to train. In [1] they trained the classifiers with 3.500 faces, having equal number of samples per each category (500 per class).

If you need more images, the Images of Groups Dataset [2] is a collection of people images from Flickr images. They labeled each face into seven age categories: 0-2, 3-7, 8-12, 13-19, 20-36, 37-65, and 66+

[1] Ylioinas, J., Hadid, A., & Pietikainen, M. (2012, November). Age Classification in Unconstrained Conditions Using LBP Variants. In Pattern Recognition (ICPR), 2012 21st International Conference on (pp. 1257-1260). IEEE. PDF

[2] http://chenlab.ece.cornell.edu/people/Andy/ImagesOfGroups.html

Preview: (hide)

Comments

1

Thanks a lot for suggestion. So if I train more images i can achieve 80-90 % age estimation correctly using FisherFaceRecognizer of OpenCV ? whatever per-processing you have mentioned can it be achievable using OpenCV ?

Piyushkp gravatar imagePiyushkp (Jul 22 '13)edit
1

Yes, it can be done using OpenCV.

Check also this source code and take a look at the paper also:

https://github.com/bytefish/opencv/blob/master/misc/tan_triggs.cpp

albertofernandez gravatar imagealbertofernandez (Jul 23 '13)edit

Thanks a lot. I am developing age estimation algorithm using OpenCV.

Piyushkp gravatar imagePiyushkp (Jul 25 '13)edit

@Piyshkp: Do you finishe your age estimation? Could you suggest to me the database for learning? And If it is possible, could you share source code to me via email leeyoongu0288@gmail.com

mjohn1232 gravatar imagemjohn1232 (Apr 2 '15)edit

hi, i have the same questions than mjohn1232, could you share source code to me via email:pypompee@yahoo.fr ?

stheno gravatar imagestheno (Jan 16 '17)edit

Question Tools

2 followers

Stats

Asked: Jul 18 '13

Seen: 10,080 times

Last updated: Jul 18 '13