The color temperature of a light source is the temperature of an ideal black-body radiator that radiates light of a color comparable to that of the light source.
Questions tagged [cct]
5 questions
3
votes
1 answer
Convert CCT (Correlated Color Temperature) to x, y Chromaticities
I'm trying to convert a CCT of 6504K into x, y chromaticities in 1931 2deg color space. Followed the equation on this Wikipedia page under section COMPUTATION - doing this in Python 3.6.
D65 (of 6504K) is specified as 0.31271, 0.32902 (see same …

pete19
- 333
- 1
- 3
- 17
2
votes
0 answers
How to get the current color temperature of the camera in real time?
I need to implement the light source matching function of Sidus Link APP.
The function is to open the camera preview and display the color temperature in real time.
This is the related picture of the function:
1
2
3
I don’t have any ideas, and I…

Jin
- 31
- 2
1
vote
0 answers
Chrome custom tabs fail behind a proxy
We have an Android application opening Chrome Custom Tabs to perform user authentication. (A stripped version of the fragment code is listed below.)
When the mobile network has a proxy address:port configured, the CCT browser displays a popup to…

Brian Gore
- 11
- 2
1
vote
3 answers
How to get XY value from ct in Philips Hue?
How to get XY value from ct.
Ex: ct = 217, I want to get x="0.3127569", y= "0.32908".
I'm able to convert XY value into ct value using this below code.
float R1 = [hue[0] floatValue];
float S1 = [hue[1] floatValue];
…

Naresh
- 16,698
- 6
- 112
- 113
0
votes
0 answers
How can native Android application return value to JavaScript running inside CCT
We have one native Android application which will launch CCT to browse a web page. There is a JavaScript button inside the Web page will trigger some native behavior by calling the AppLink URL listened by hosting native app. After Native App finish…