i computed LBP histogram for two images in matlab, what method used to compare the LBP histograms?
조회 수: 5 (최근 30일)
이전 댓글 표시
LBP histogram
댓글 수: 0
채택된 답변
Nikolay S.
2015년 3월 16일
Hi there. The question is how to compare two histograms. In other words you want to find their similarity/dissimilarity measure. One way to do so is to calculate their SSD- Sum oF Square differences, which is a common way to present difference between tow feature vectors. To do so htry: diffHistLBP=hist1-hist2; SSD=sum(diffHistLBP.^2);
Naturally there are many other metrics... You can normalize/equalize the histogram before finding their SSD. Hope this is helpful, Nikolay
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Histograms에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!