An Example of Course Project

13
An Example of Course Project Face Identification

description

An Example of Course Project. Face Identification. Agenda. Why Face Identification?. Useful Interesting Creating own dataset for extra credits. Data set. The Extended Yale Face Database B 2414 images of 38 human Own data 100 images of 4 people. Classifiers. - PowerPoint PPT Presentation

Transcript of An Example of Course Project

Page 1: An Example of Course Project

An Example of Course Project

Face Identification

Page 2: An Example of Course Project

Agenda

Page 3: An Example of Course Project

Why Face Identification?

• Useful• Interesting• Creating own dataset for extra credits

Page 4: An Example of Course Project

Data set

• The Extended Yale Face Database B– 2414 images of 38 human

• Own data – 100 images of 4 people

Page 5: An Example of Course Project

Classifiers

• SVM (Support Vector Machine)– LIBSVM– Self Implemented SVM Optimizer

• ANN (Artificial Neural Network)

• Coded in Matlab

Page 6: An Example of Course Project

Classifier Parameters

• SVM – Kennel functions

• ANN – Layers and units

Page 7: An Example of Course Project

Feature Selection

• Raw pixels• Down-sampling pixels • Extracted features

Page 8: An Example of Course Project

Compare Kernel Functions

exp(|uv|^2)

u'*v tanh(u'*v)

(u'*v)^2 (u'*v)^360.00%

65.00%

70.00%

75.00%

80.00%

85.00%

90.00%

95.00%

100.00%

LIBSVM Multi-classifierImproved one-vs-all

Page 9: An Example of Course Project

Compare Feature Numbers

10 100 1000 10000 10000080.00%

85.00%

90.00%

95.00%

100.00%

105.00%

0

500

1000

1500

2000

2500

AccuracyTime

Feature Number

Page 10: An Example of Course Project

ANN Learn Rate

Page 11: An Example of Course Project

Report

• 10 pages

Page 12: An Example of Course Project

Schedule

3 2 2 3

Proposal

Prepare dataset

Data preprocessing

Algorithms implementation

2

Evaluation & Report

12 weeks total

Page 13: An Example of Course Project

Lessons Learned

• Start early• Review each other’s work