how to Matlab function to calculate probability density function of n image?
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Jhilam Mukherjee
il 27 Giu 2014
Commentato: Alessandro Bile
il 19 Set 2018
I want to calculate the probability density function of an image. can you tell me what is the matlab function
0 Commenti
Risposta accettata
Image Analyst
il 27 Giu 2014
Assuming you mean the pdf of gray levels, use imhist().
4 Commenti
Image Analyst
il 18 Set 2018
pdf is not an image so you don't use imshow(). It's a vector so use plot() or bar():
plot(binLocations, pdf, 'b-', 'LineWidth', 2);
grid on;
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Image Processing Toolbox in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!