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.
이전 댓글 표시
If I create array of Histogram then it gives me error that Subscripted assignment dimension mismatch. so please help me.
댓글 수: 5
Image Analyst
2013년 12월 29일
You forgot to attach your m-file. Change it to use a standard MATLAB demo image file first.
radha
2014년 1월 2일
radha
2014년 1월 2일
radha
2014년 1월 7일
radha
2014년 1월 7일
채택된 답변
추가 답변 (1개)
Nikolay S.
2015년 3월 16일
0 개 추천
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
카테고리
도움말 센터 및 File Exchange에서 Color Segmentation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!