C光源のXYZ表色系をRGB値に変換する方法
6 views (last 30 days)
Show older comments
D65光源のXYZ値をRGB値に変換する関数はありますが、「C光源」のXYZ値をRGB値に変換する関数はありますか。
ご教授願います。
0 Comments
Accepted Answer
Atsushi Ueno
on 10 Feb 2022
オプションに「WhitePoint — 基準白色点」があります。
xyzvalue = [0.25 0.40 0.10];
% D65光源の XYZ 値を 12 ビット BT.2020 RGB 値に変換
rgbvalue = xyz2rgbwide(xyzvalue,12); % 'WhitePoint'の規定値は'd65'
% C光源の XYZ 値を 12 ビット BT.2020 RGB 値に変換
rgbvalue = xyz2rgbwide(xyzvalue,12,'WhitePoint','c');
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!