Do you know any histogram modification methods?

1 回表示 (過去 30 日間)
Jakub Mis
Jakub Mis 2022 年 6 月 25 日
コメント済み: Jakub Mis 2022 年 6 月 25 日
I'm looking for any histogram modification methods besides Equalization and Stretching the histogram. Code for them would be very helpful too.

回答 (1 件)

Image Analyst
Image Analyst 2022 年 6 月 25 日
編集済み: Image Analyst 2022 年 6 月 25 日
In the Image Processing Toolbox there are
  1. histeq, which gives lousy images,
  2. adapthisteq which gives good images.
  3. imadjust which expands the dynamic range. Usually not needed but can be if you want to save a contrastier image with imwrite
  4. Morphological functions like imclose and friends
  5. Denoising functions like medfilt2
There are many, many others. Almost anything you do to an image will change the image, even something as simple as adding a number to it or multiplying it by an intensity scaling factor, or even denoising. Your question can't be answered comprehensively because there are just a bazillion answers.
  5 件のコメント
Image Analyst
Image Analyst 2022 年 6 月 25 日
You can get the probability with the 'Normalization' option in histogram. Then you can plug that P into your equations to get a new gray level for the graylevel at P(z). You can transform the whole image in one equation like they show.
Jakub Mis
Jakub Mis 2022 年 6 月 25 日
I meanged to get the propablity using P=histogram(X,'Normalization','probability');
,at least I think I did, but can't extract any data from that what shoud I do next?

サインインしてコメントする。

Community Treasure Hunt

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

Start Hunting!

Translated by