colour.colorimetry.sd_multi_leds_Ohno2005

colour.colorimetry.sd_multi_leds_Ohno2005(peak_wavelengths, fwhm, peak_power_ratios=None, shape=SpectralShape(360, 780, 1))[source]

Returns a multi LED spectral distribution of given spectral shape at given peak wavelengths and full widths at half maximum according to Ohno (2005) method.

The multi LED spectral distribution is generated using many single LED spectral distributions generated with colour.sd_single_led_Ohno2005() definition.

Parameters:
  • peak_wavelengths (array_like) – Wavelengths the multi LED spectral distribution will peak at, i.e. the peaks for each generated single LED spectral distributions.
  • fwhm (array_like) – Full widths at half maximum, i.e. widths of the underlying gaussian spectral distributions measured between those points on the y axis which are half the maximum amplitude.
  • peak_power_ratios (array_like, optional) – Peak power ratios for each generated single LED spectral distributions.
  • shape (SpectralShape, optional) – Spectral shape used to create the spectral distribution.
Returns:

Multi LED spectral distribution.

Return type:

SpectralDistribution

Notes

References

[Ohn05], [OD08]

Examples

>>> sd = sd_multi_leds_Ohno2005(
...     np.array([457, 530, 615]),
...     np.array([20, 30, 20]),
...     np.array([0.731, 1.000, 1.660]),
... )
>>> sd.shape
SpectralShape(360.0, 780.0, 1.0)
>>> sd[500]  # doctest: +ELLIPSIS
0.1295132...