RGB and LAB values
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
AKG
el 14 de Nov. de 2020
Comentada: Constantino Carlos Reyes-Aldasoro
el 17 de Nov. de 2020
The RGB values and LAB values of a particular location on an image will be different. How can I display these values ? Should I find RGB value of the location first and then convert it into LAB color space, or is there any other way?
0 comentarios
Respuesta aceptada
Constantino Carlos Reyes-Aldasoro
el 16 de Nov. de 2020
RGB, LAB, HSV and many others are colour spaces, that is how to create colours that resemble what natural colours are, see for instance
Images from cameras will come as RGB in most cases, that means that every pixel has 3 values for the intensities of Red, Green and Blue channels. These will be different from LAB or any other colour space.
How can I display these values ?
Well, if you want to visualise as an image, then use imagesc or imshow where the three values will be interpreted as colour. You may want to visualise them separately as
imagesc(your_image(:,:,1)) %assuming that your image is called your_image
You may want to view the values so just type a range in the command window
your_image(1:5,1:5,1:3)
do not use semicolon in the end to echo to the screen the values.
Should I find RGB value of the location first and then convert it into LAB color space, or is there any other way?
you can convert the whole image in a single command:
your_image_LAB = rgb2lab(your_image);
Hope this helps. If this solves the problem, please accept the answer, if not, let me know.
2 comentarios
Constantino Carlos Reyes-Aldasoro
el 17 de Nov. de 2020
This will display the combination of RGB as colour:
imagesc(your_image)
if you want to see individual channels do this
subplot(311); imagesc(your_image(:,:,1));
subplot(312); imagesc(your_image(:,:,2));
subplot(313); imagesc(your_image(:,:,3));
be careful with the colour map you use, the safest is gray, but others may be better for visualisation.
And the same for the LAB
subplot(311); imagesc(your_image_LAB (:,:,1));
subplot(312); imagesc(your_image_LAB (:,:,2));
subplot(313); imagesc(your_image_LAB (:,:,3));
Más respuestas (1)
Hrishikesh Borate
el 16 de Nov. de 2020
Hi,
I understand that you want to display LAB color space values. By default, the Image Processing Toolbox represents colors in RGB values, but to get LAB values, rgb2lab function can be used.
0 comentarios
Ver también
Categorías
Más información sobre Convert Image Type 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!