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

조회 수: 6 (최근 30일)
Indra
Indra 2014년 6월 15일
댓글: santhosh kumar buddepu 2022년 5월 2일
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
chinnurocks
chinnurocks 2016년 7월 28일
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.

댓글을 달려면 로그인하십시오.

답변 (1개)

Nikolay S.
Nikolay S. 2015년 3월 16일
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
santhosh kumar buddepu
santhosh kumar buddepu 2022년 5월 2일
can you please provide matlab code for how to fuse the HOG and LBP features for a given set of images

댓글을 달려면 로그인하십시오.

제품

Community Treasure Hunt

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

Start Hunting!

Translated by