How to plot conitinous histogram?
1 回表示 (過去 30 日間)
古いコメントを表示
Hi,
i plot two histograms. I can plot one of them continiously (figure1), but i can't plot another one continiously (figure2). How can i plot figure2 like figure1?
![hists.png](https://www.mathworks.com/matlabcentral/answers/uploaded_files/257585/hists.png)
here is my code:
input_image = imread('test1.bmp');
input_image = rgb2gray(input_image);
input_image = uint8(input_image);
histogram_of_image = imhist(input_image);
figure;
plot(histogram_of_image);
Outp_Same = histeq( input_image);
Outp_Same_Hist = imhist(Outp_Same);
figure;
plot(Outp_Same_Hist);
0 件のコメント
回答 (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!