I have divided image into 30 blocks and obtained histogram of each block using LBP algorithm, i do not know how to store them separately and merge all histogram to get the single histogram?I want code for merging and saving each histogram of block.
Mostrar comentarios más antiguos
If I create array of Histogram then it gives me error that Subscripted assignment dimension mismatch. so please help me.
5 comentarios
Image Analyst
el 29 de Dic. de 2013
You forgot to attach your m-file. Change it to use a standard MATLAB demo image file first.
radha
el 2 de En. de 2014
radha
el 2 de En. de 2014
radha
el 7 de En. de 2014
radha
el 7 de En. de 2014
Respuesta aceptada
Más respuestas (1)
Nikolay S.
el 16 de Mzo. de 2015
0 votos
Hi there. I'd suggest to have the histograms concatenated via Matlab CAT command. masterHist=cat(1, hist1, hist2,...hist30);
I believe a similar scheme is proposed for face detection in "Face Description with Local Binary Patterns: Application to Face Recognition", http://ieeexplore.ieee.org/xpls/abs_all.jsp?arnumber=1717463
Best regards, Nikolay
Categorías
Más información sobre Color Segmentation en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!