LED 의 색좌표 u', v' (CIE1976) 계산 알고리즘
스펙트로메타를 통해 LED의 스펙트럼 데이타를 추출한 후 색좌표 상의 u',v'(CIE1976) 을 계산하는 알고리즘 입니다. void CIE1976_Chromaticity(double* Wavelength, double* Spectrum, int Length, double& uPrime, double& vPrime) { double TristimulusX, TristimulusY, TristimulusZ; Tristimulus_Value(Wavelength, Spectrum, Length, TristimulusX, TristimulusY, TristimulusZ) ; try { uPrime = (4 * TristimulusX) / (TristimulusX + (TristimulusY * 15) + (T..