How to plot histogram of difference of two images using MATLAB
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Mustafa Uysal
am 16 Dez. 2019
Bearbeitet: Ridwan Alam
am 17 Dez. 2019
i would like to calculate difference of two images. Then, histogram of difference of two images. So, when i plot histogram i want to see negative values. But i can't see negative values. So, i think my code is not true. How can i calculate histogram of difference of two images.
My two images are original_result and output_image. And difference of two image is image_of_dif. my result.
![Adsız.png](https://www.mathworks.com/matlabcentral/answers/uploaded_files/254715/Ads%C4%B1z.png)
0 Kommentare
Akzeptierte Antwort
Ridwan Alam
am 17 Dez. 2019
Bearbeitet: Ridwan Alam
am 17 Dez. 2019
histogram(image_of_dif)
will plot the histogram showing the distribution of values (both positive and negative differences).
2 Kommentare
Ridwan Alam
am 17 Dez. 2019
Bearbeitet: Ridwan Alam
am 17 Dez. 2019
histogram() by default plots the histogram, which is what your pic represents. And it shows the negative values as you expected, right?
The h is a histogram object, not an array to plot directly. For more details: https://www.mathworks.com/help/matlab/ref/matlab.graphics.chart.primitive.histogram.html
Please accept the answer if it works for you. Thanks!
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Histograms finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!