An Example of Course Project Face Identification.

13
An Example of Course Project Face Identification

Transcript of An Example of Course Project Face Identification.

Page 1: An Example of Course Project Face Identification.

An Example of Course Project

Face Identification

Page 2: An Example of Course Project Face Identification.

Agenda

Page 3: An Example of Course Project Face Identification.

Why Face Identification?

• Useful• Interesting• Creating own dataset for extra credits

Page 4: An Example of Course Project Face Identification.

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 Face Identification.

Classifiers

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

• ANN (Artificial Neural Network)

• Coded in Matlab

Page 6: An Example of Course Project Face Identification.

Classifier Parameters

• SVM – Kennel functions

• ANN – Layers and units

Page 7: An Example of Course Project Face Identification.

Feature Selection

• Raw pixels• Down-sampling pixels • Extracted features

Page 8: An Example of Course Project Face Identification.

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 Face Identification.

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 Face Identification.

ANN Learn Rate

Page 11: An Example of Course Project Face Identification.

Report

• 10 pages

Page 12: An Example of Course Project Face Identification.

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 Face Identification.

Lessons Learned

• Start early• Review each other’s work