Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PR: Add colour.SpectralShape.from_array class method (constructor). #1322

Open
wants to merge 4 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# The pre-commit steps used by colour are:
# * codespell
# * isort
# * ruff-format
# * ruff --fix
# * blacken-docs
# * prettier (with specific fixes)
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: "v5.0.0"
Expand Down
23 changes: 23 additions & 0 deletions colour/colorimetry/spectrum.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,29 @@ def __init__(self, start: Real, end: Real, interval: Real) -> None:
self.end = end
self.interval = interval

@classmethod
def from_array(cls, data: ArrayLike) -> SpectralShape:
"""Alternate constructor, create a SpectralShape from an ArrayLike list
of values. Values must be evenly spaced.

Parameters
----------
data : ArrayLike
The wavelength list

Returns
-------
SpectralShape
"""
data = np.asarray(data)

spacing = (diff_intermediate := np.diff(data))[0]
if ~np.all(diff_intermediate == spacing):
error = "data values must have equal spacing"
raise RuntimeError(error)

return SpectralShape(data[0], data[-1], spacing)

@property
def start(self) -> Real:
"""
Expand Down
15 changes: 15 additions & 0 deletions colour/colorimetry/tests/test_spectrum.py
Original file line number Diff line number Diff line change
Expand Up @@ -1417,6 +1417,21 @@ def test_range(self) -> None:
np.arange(0, 10 + 0.1, 0.1),
)

def test_from_data(self) -> None:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Major

test_from_data --> test_from_array/test_from_wavelengths

"""Test :func:`colour.colorimetry.spectrum.SpectralShape.from_array`"""
data = np.arange(400, 700 + 1, 10) # arange generates [start, stop)
shape = SpectralShape.from_array(data)

assert shape.start == 400
assert shape.end == 700
assert shape.interval == 10

assert shape == SpectralShape(400, 700, 10)

with pytest.raises(RuntimeError):
data = [400, 450, 500, 555, 600, 650, 700]
SpectralShape.from_array(data)


class TestSpectralDistribution:
"""
Expand Down
18 changes: 11 additions & 7 deletions colour/quality/cfi2017.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@
if typing.TYPE_CHECKING:
from colour.hints import ArrayLike, List, Literal, Tuple

from colour.hints import NDArrayFloat, cast
from colour.colorimetry.spectrum import SPECTRAL_SHAPE_DEFAULT
from colour.hints import ArrayLike, List, NDArrayFloat, Tuple, cast
from colour.models import JMh_CIECAM02_to_CAM02UCS, UCS_to_uv, XYZ_to_UCS
from colour.temperature import CCT_to_xy_CIE_D, uv_to_CCT_Ohno2013
from colour.utilities import (
Expand All @@ -66,16 +67,16 @@
__status__ = "Production"

__all__ = [
"SPECTRAL_SHAPE_CIE2017",
"ROOT_RESOURCES_CIE2017",
"DataColorimetry_TCS_CIE2017",
"SPECTRAL_SHAPE_CIE2017",
"CCT_reference_illuminant",
"ColourRendering_Specification_CIE2017",
"DataColorimetry_TCS_CIE2017",
"colour_fidelity_index_CIE2017",
"delta_E_to_R_f",
"load_TCS_CIE2017",
"CCT_reference_illuminant",
"sd_reference_illuminant",
"tcs_colorimetry_data",
"delta_E_to_R_f",
]

SPECTRAL_SHAPE_CIE2017: SpectralShape = SpectralShape(380, 780, 1)
Expand Down Expand Up @@ -346,7 +347,9 @@ def CCT_reference_illuminant(sd: SpectralDistribution) -> NDArrayFloat:
return uv_to_CCT_Ohno2013(UCS_to_uv(XYZ_to_UCS(XYZ)), start=1000, end=25000)


def sd_reference_illuminant(CCT: float, shape: SpectralShape) -> SpectralDistribution:
def sd_reference_illuminant(
CCT: float, shape: SpectralShape = SPECTRAL_SHAPE_DEFAULT
) -> SpectralDistribution:
"""
Compute the reference illuminant for a given correlated colour temperature
:math:`T_{cp}` for use in *CIE 2017 Colour Fidelity Index* (CFI)
Expand All @@ -357,7 +360,8 @@ def sd_reference_illuminant(CCT: float, shape: SpectralShape) -> SpectralDistrib
CCT
Correlated colour temperature :math:`T_{cp}`.
shape
Desired shape of the returned spectral distribution.
Desired shape of the returned spectral distribution. Defaults to
SPECTRAL_SHAPE_DEFAULT

Returns
-------
Expand Down
9 changes: 9 additions & 0 deletions colour/quality/tests/test_cfi2017.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
reshape_sd,
sd_blackbody,
)
from colour.colorimetry.spectrum import SPECTRAL_SHAPE_DEFAULT
from colour.quality.cfi2017 import (
CCT_reference_illuminant,
colour_fidelity_index_CIE2017,
Expand Down Expand Up @@ -924,6 +925,14 @@ class TestSdReferenceIlluminant:
definition unit tests methods.
"""

def test_default_args(self) -> None:
"""Test :func:`color.quality.CIE2017.sd_reference_illuminant` for
default shape argument.
"""

sd = sd_reference_illuminant(5421)
assert sd.shape == SPECTRAL_SHAPE_DEFAULT

def test_sd_reference_illuminant(self) -> None:
"""
Test :func:`colour.quality.CIE2017.sd_reference_illuminant`
Expand Down
Loading