How to retrieve data points from a grayscale histogram?
古いコメントを表示
Hello! I have a grayscale image and its histogram. How do can I extract data points from this histogram? Say, the number of pixels for each value of the grayscale; I need to put that information into excel.
Thank you.
採用された回答
その他の回答 (1 件)
Sulaymon Eshkabilov
2021 年 6 月 12 日
0 投票
(1) Import// read your image in matlab
(2) perform histogram analysis with hostogram(), e.g: h= histogram() or h = histogram2()
See this doc: https://www.mathworks.com/help/matlab/ref/matlab.graphics.chart.primitive.histogram2.html
(3) Collect necessary data from h that would be a structure array containing all data.
カテゴリ
ヘルプ センター および File Exchange で Histograms についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!