How to fuse the HOG and LBP features for a given set of images ?

조회 수: 5 (최근 30일)
I have extracted HOG features and LBP features seperately for my dataset. now, I want to fuse these features. but I don't know how to fuse the features.

채택된 답변

Birju Patel
Birju Patel 2022년 5월 5일
The easiest method to fuse HOG and LBP is to simply concatenate them into one long feature vector:
hog = extractHOGFeatures(...)
lbp = extractLBPFeatures(...)
fused = [hog lbp]
The fused feature vector can then be used to train a machine learning model.
  댓글 수: 1
santhosh kumar buddepu
santhosh kumar buddepu 2022년 5월 6일
Thank you sir, but is concatenation can be treated as fusion? is there any fusing algorithms specially available

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

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by