How to convert RGB to CIE Lab color space.
조회 수: 4 (최근 30일)
이전 댓글 표시
Is there any difference between these two procedures of rgb to lab conversion.
1. colorTransform = makecform('srgb2lab'); lab = applycform(rgbImage, colorTransform);
2. rgb2lab
댓글 수: 0
채택된 답변
Walter Roberson
2015년 10월 14일
makecform('srgb2lab') uses WhitePoint 'ICC' by default. rgb2lab() uses whitepoint 'D65' by default.
https://en.wikipedia.org/wiki/ICC_profile "a 16-bit fractional approximation of D50"
댓글 수: 0
추가 답변 (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!