How to fuse the HOG and LBP features for a given set of images ?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
santhosh kumar buddepu
el 3 de Mayo de 2022
Comentada: santhosh kumar buddepu
el 6 de Mayo de 2022
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 comentarios
Respuesta aceptada
Birju Patel
el 5 de Mayo de 2022
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.
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!