how to Matlab function to calculate probability density function of n image?
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Jhilam Mukherjee
el 27 de Jun. de 2014
Comentada: Alessandro Bile
el 19 de Sept. de 2018
I want to calculate the probability density function of an image. can you tell me what is the matlab function
0 comentarios
Respuesta aceptada
Image Analyst
el 27 de Jun. de 2014
Assuming you mean the pdf of gray levels, use imhist().
4 comentarios
Image Analyst
el 18 de Sept. de 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;
Más respuestas (0)
Ver también
Categorías
Más información sobre Image Processing Toolbox en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!