how i can get color histogram of H channel of HSV image?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
samira bellil
el 5 de Abr. de 2017
Comentada: samira bellil
el 5 de Abr. de 2017
how i can get H channel color histogram of HSV image
0 comentarios
Respuesta aceptada
Walter Roberson
el 5 de Abr. de 2017
4 comentarios
Walter Roberson
el 5 de Abr. de 2017
YourImage = imread('autumn.tif');
HSV = rgb2hsv(YourImage);
H = HSV(:,:,1);
histogram(H, 10);
Más respuestas (0)
Ver también
Categorías
Más información sobre Histograms en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!