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.

조회 수: 1 (최근 30일)
If I create array of Histogram then it gives me error that Subscripted assignment dimension mismatch. so please help me.
  댓글 수: 5
radha
radha 2014년 1월 7일
Please just help me to concatenate all histogram of an image into single histogram., and how to create .mat file in R2011a version of matalb??
radha
radha 2014년 1월 7일
I do not have any idea about merging/concatenation of histograms. so your help is of great importance to me. I am doing project on this so I expect that you reply as son as possible.

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

채택된 답변

Image Analyst
Image Analyst 2014년 1월 7일
Create a mat file with the save() function. You can attach your actual image with the paper clip icon if your code can only work with that kind of image. To add histograms, do this
sumHist = hist1 + hist2; % Must have same number of bins. hist1 can be sumHist if you want.
  댓글 수: 9
radha
radha 2014년 1월 10일
Can you please also help me for implementing the spatial pyramid matching kernel?? I mean I don't have any idea about its implantation that how I should proceed?? So please help me for these two implementation i.e. spatial pyramid matching and one I already asked about .mat file in above comment.
radha
radha 2014년 1월 10일
Thanks in advance. You really helped me. Now just I have these two things need to implement. I hope you also help me for that as well.

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

추가 답변 (1개)

Nikolay S.
Nikolay S. 2015년 3월 16일
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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by