How to convert gray image to HSV plane S - value image?

5 visualizaciones (últimos 30 días)
elsa chang
elsa chang el 20 de En. de 2020
Editada: DGM el 31 de Dic. de 2023
Hi,
Given my image is a gray image and i don't have the rgb image of this gray image, can i know how can i convert this gray image to the HSV colour plane S - value plane image only?
  1 comentario
DGM
DGM el 31 de Dic. de 2023
Editada: DGM el 31 de Dic. de 2023
Consider a cone.
Consider a point P which lies on the central axis of the cone.
What is the distance from P to the nearest point on the central axis of the cone?

Iniciar sesión para comentar.

Respuesta aceptada

Walter Roberson
Walter Roberson el 20 de En. de 2020
Editada: Walter Roberson el 20 de En. de 2020
Hsv=rgb2hsv(repmat(YourMatrix, 1, 1, 3));
S = Hsv(:, :, 2) ;
By the way the results are all 0. The h plane is all 0 too.

Más respuestas (0)

Categorías

Más información sobre Modify Image Colors 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