Ask Your Question
0

Classification algorithm in face recognition methods

asked Sep 8 '16

Kelvin gravatar image

I'm using some algorithms (eigenfaces, fisherfaces and LBPH) to perform face recognition using the opencv contrib modules.

Can someone explain to me what internal algorithms these methods use to perform the classification? (for example K-NN, etc)

Note: if it uses K-NN, what is the default value for K?

Thanks

Preview: (hide)

1 answer

Sort by » oldest newest most voted
2

answered Sep 8 '16

berak gravatar image

all 3 algorithms are using a simple (1) Nearest Neighbour classification, like this:

for each image in trainset:
    if distance between train & test img is the smallest so far:
          keep best id & distance
return best id & distance
Preview: (hide)

Comments

Great. Thanks a lot @berak.

Kelvin gravatar imageKelvin (Sep 10 '16)edit

One more thing I forgot to ask. What distance measurement is used? It uses euclidean distance?

Kelvin gravatar imageKelvin (Oct 4 '16)edit

yes, exactly.

berak gravatar imageberak (Oct 4 '16)edit

Ok, thanks again @berak.

Kelvin gravatar imageKelvin (Oct 4 '16)edit

Question Tools

1 follower

Stats

Asked: Sep 8 '16

Seen: 266 times

Last updated: Sep 08 '16