how i can get color histogram of H channel of HSV image?

1 visualización (últimos 30 días)
how i can get H channel color histogram of HSV image

Respuesta aceptada

Walter Roberson
Walter Roberson el 5 de Abr. de 2017
Use histogram() or histcounts() . Or accumarray()
  4 comentarios
Walter Roberson
Walter Roberson el 5 de Abr. de 2017
YourImage = imread('autumn.tif');
HSV = rgb2hsv(YourImage);
H = HSV(:,:,1);
histogram(H, 10);

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Histograms en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by