Image Segmentation using Histograms
Mostrar comentarios más antiguos
Dear All,
I am a student of Masters First Year....I am working on how to segment a part of Image using histograms. I am at initial stage of this part.
I need help in this regard, as i am converting an image in histogram i.e. f=imread('any image.jpg'); g=rgb2gray(f); h=imhist(g) figure, imshow(h) as i m executing this code i am not getting any histogram of the image...can anybody tell me why?
1 comentario
ROHIT GUPTA
el 16 de Oct. de 2022
I = imread('any image.jpg')
imshow(I)
figure;
imhist(I);
Respuesta aceptada
Más respuestas (1)
Vahid Amin Nili
el 29 de Jul. de 2015
0 votos
try "hist(Y,x)" function
Categorías
Más información sobre Histograms en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!