for texture classification i have taken lbp as a feature..after applying lbp i have taken histogram..how to normalise the bins of histogram..and what is meant by normalise bins of histogram?
2 ビュー (過去 30 日間)
古いコメントを表示
for texture classification i have taken lbp as a feature..after applying lbp i have taken histogram..how to normalise the bins of histogram..and what is meant by normalise bins of histogram?
0 件のコメント
採用された回答
Image Analyst
2012 年 10 月 27 日
編集済み: Image Analyst
2012 年 10 月 27 日
Normalization would mean that you either divide by the max value of the counts, or that you divide by the sum of all the counts.
[pixelCounts grayLevels] = imhist(lbpImage, 256);
normalizedHist1 = pixelCounts / max(pixelCounts(:));
normalizedHist2 = pixelCounts / sum(pixelCounts(:));
It means that either the max value of any count will be 1.0, or that the sum of all counts would now be 1.0, depending on which method you use.
0 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!