colour.sd_multi_leds#
- colour.sd_multi_leds(peak_wavelengths: ArrayLike, shape: SpectralShape = SPECTRAL_SHAPE_DEFAULT, method: Literal['Ohno 2005'] | str = 'Ohno 2005', **kwargs: Any) SpectralDistribution [source]#
Return a multi LED spectral distribution of given spectral shape at given peak wavelengths.
- Parameters:
peak_wavelengths (ArrayLike) – Wavelengths the multi LED spectral distribution will peak at, i.e., the peaks for each generated single LED spectral distributions.
shape (SpectralShape) – Spectral shape used to create the spectral distribution.
method (Literal['Ohno 2005'] | str) – Computation method.
kwargs (Any) – {
colour.colorimetry.sd_multi_leds_Ohno2005()
}, See the documentation of the previously listed definition.
- Returns:
Multi LED spectral distribution.
- Return type:
Notes
By default, the spectral distribution will use the shape given by
colour.SPECTRAL_SHAPE_DEFAULT
attribute.
References
Examples
>>> sd = sd_multi_leds( ... np.array([457, 530, 615]), ... half_spectral_widths=np.array([20, 30, 20]), ... peak_power_ratios=np.array([0.731, 1.000, 1.660]), ... ) >>> sd.shape SpectralShape(360.0, 780.0, 1.0) >>> sd[500] 0.1295132...