how can i get the pixel values of L , a, b in Lab space?
12 次查看(过去 30 天)
显示 更早的评论
i write this code data(m,n).color= impixel(imlab,m,n); imlab is an image in lab space and the result of running the code has 3 number i dont know is it correct? if yes which one is a ? and how can i use this value to calculate the difference between 2 pixels color? and do you suggest using DELTA E?
0 个评论
采纳的回答
Image Analyst
2017-12-29
编辑:Image Analyst
2017-12-29
L is plane 1, a is 2, and b is 3.
labImage = rgb2lab(rgbImage);
lImage = labImage(:, :, 1);
aImage = labImage(:, :, 2);
bImage = labImage(:, :, 3);
imshow(labImage);
hp = impixelinfo();
Yes you should use delta E to determine color difference.
deltaEImage = sqrt((lImage - lRef) .^ 2 + ...
(aImage - aRef) .^ 2 + ...
(bImage - bRef) .^ 2);
imshow(deltaEImage, []);
hp = impixelinfo();
Note, these are not TRUE CIELAB values like you'd get from a spectrophotometer and simply use the "book formula". If you change the exposure of your camera, you will get new RGB values, and hence new LAB values even though your sample did not change at all. To avoid that, you'd need to take the much more complicated step of doing a color calibration of your system with known standards like the X-Rite Color Checker Chart.
5 个评论
Image Analyst
2018-1-10
Your comment tells me you did not look at the link to Westland's toolbox that I recommended. If you had looked at it, you would have found the function.
function [de,dl,dc,dh] = cie00de(lab1,lab2,sl,sc,sh)
By the way, I'm sure you've heard the expression "garbage in, garbage out". So, it's OK to use in some circumstances but you can't use delta E to compare colors across images, or expect to get out the same delta E like you'd get from a real spectrophotometer, unless you have calibrated your colors. Otherwise you're just getting "book formulas". If you have a color in one image taken with one camera or exposure conditions and another image from a different camera or exposure conditions, then even using the book formula is meaningless.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Color 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!