How to combine two features HOG and LBP to get better accuracy?

6 visualizaciones (últimos 30 días)
Indra
Indra el 15 de Jun. de 2014
Comentada: santhosh kumar buddepu el 2 de Mayo de 2022
Dear all,,
I am working on people detection with training datasets. I used two different different feature extraction, HOG and LBP. Each of them will extract 324 feature vector (HOG) and 59 feature vector (LBP) for each training image. I am currently using simple concatenation to combine bothe features and then the results will be feed into SVM classifier to be classified. However, seems like this method gives a domination to HOG.
I have tried to find out another method, which is using fusion features, yet I have no knowledge how to do the algorithm. I really need help from the expert who know about the fusion feature to combine two features.
Really thank you
  1 comentario
chinnurocks
chinnurocks el 28 de Jul. de 2016
Hey bro instead of using uniform LBP, I have used LBP and got 9164 elements but unable to train these features to 'SVMtrain' as I am unable to store all 9164 elements in one row in an excel sheet. Need your suggestions.

Iniciar sesión para comentar.

Respuestas (1)

Nikolay S.
Nikolay S. el 16 de Mzo. de 2015
Hi there. I've worked on a project where we have combined multiple features to achieve best detection. HOG and LBP were some of the used features BTW :). What you've been doing so far is a good point to start. You can try PCA on top fo that to reduce irrelevant features, preserving most dominant ones. Voting can also be nice- you apply an SVM to each feature vector, and the you have to combine their decisions- you can have "and"/"or"/"majority vote" schemes, to decide true (detection) or false (no detection). All above are relatively easy methods, with good potential to succeed. Another thing is use Cascade & Boosting- as Viola & Jones did. This is a powerful tool that will reject features in ascending order. But you will need to invest effort to get into it. Best regards, Nikolay
  1 comentario
santhosh kumar buddepu
santhosh kumar buddepu el 2 de Mayo de 2022
can you please provide matlab code for how to fuse the HOG and LBP features for a given set of images

Iniciar sesión para comentar.

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by