How to fuse the HOG and LBP features for a given set of images ?
3 ビュー (過去 30 日間)
古いコメントを表示
santhosh kumar buddepu
2022 年 5 月 3 日
コメント済み: santhosh kumar buddepu
2022 年 5 月 6 日
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.
0 件のコメント
採用された回答
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.
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!