RGB and LAB values
1 次查看(过去 30 天)
显示 更早的评论
AKG
2020-11-14
评论: Constantino Carlos Reyes-Aldasoro
2020-11-17
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 个评论
采纳的回答
Constantino Carlos Reyes-Aldasoro
2020-11-16
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 个评论
Constantino Carlos Reyes-Aldasoro
2020-11-17
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));
更多回答(1 个)
Hrishikesh Borate
2020-11-16
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 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Convert Image Type 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!