Filter löschen
Filter löschen

how to find 10^3 dimensional histogram of a color image?

1 Ansicht (letzte 30 Tage)
i dont know how to find a 10^3 histogram of a color image.so help me

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 10 Jan. 2012
hist(YourImage(:),10^3)
You will probably not find this to be very useful, though, as it will mix the color information for all of the channels together. You need separate histograms if you want to histogram by channel.
For example,
hist(reshape(YourImage(:,:,2),[],1),10^3)

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by