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: Implement support for "MacAdam Limits" computation. #768

Open
wants to merge 47 commits into
base: develop
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
16ae787
Feature MacAdam_Limits
gutenzwerg Feb 1, 2021
47883a8
Feature MacAdam_Limits
gutenzwerg Feb 1, 2021
9e27d71
Small change in the comments
gutenzwerg Feb 20, 2021
f204568
Feature MacAdam_Limits
gutenzwerg Feb 1, 2021
99872c3
Update macadam_limits.py
gutenzwerg Feb 17, 2021
308712e
Update macadam_limits.py
gutenzwerg Feb 17, 2021
6d34507
Adjust spelling
zachlewis Feb 18, 2021
5b8593a
Update colour/volume/macadam_limits
gutenzwerg Feb 18, 2021
afc9946
Update to get results between 0 and 1
gutenzwerg Feb 19, 2021
170eb03
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] May 23, 2022
5cbd91d
Update macadam_limits.py
gutenzwerg May 23, 2022
d6fe7ee
Update macadam_limits.py
gutenzwerg May 23, 2022
b03eaf6
Trigger ci
tigerxy May 23, 2022
f3bc4fb
Update macadam_limits.py
gutenzwerg Jun 16, 2022
7296c92
Merge branch 'colour-science:develop' into feature/macadam_limits
gutenzwerg Jun 16, 2022
f5ee2a4
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Jun 16, 2022
388c0f6
Update macadam_limits.py
gutenzwerg Jun 16, 2022
91c45f7
Update macadam_limits.py
gutenzwerg Jun 16, 2022
6eb76d5
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Jun 16, 2022
41a277b
Update macadam_limits.py
gutenzwerg Jun 16, 2022
977be68
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Jun 16, 2022
9dc7145
Update macadam_limits.py
gutenzwerg Jun 16, 2022
6f306dc
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Jun 16, 2022
ac12a6b
Update macadam_limits.py
gutenzwerg Jun 16, 2022
75ade26
Update macadam_limits.py
gutenzwerg Jun 16, 2022
463a1b2
Update macadam_limits.py
gutenzwerg Jun 16, 2022
92a1cd1
Trigger CI
tigerxy Jun 16, 2022
78141ce
Update macadam_limits.py
gutenzwerg Jun 17, 2022
a190c00
Update macadam_limits.py
gutenzwerg Jun 17, 2022
c67984d
Update macadam_limits.py
gutenzwerg Jun 17, 2022
a603c18
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Jun 17, 2022
0659c32
Update macadam_limits.py
gutenzwerg Jun 17, 2022
f91801f
Update macadam_limits.py
gutenzwerg Jun 17, 2022
95a446e
Update macadam_limits.py
gutenzwerg Jun 21, 2022
38b727a
Update macadam_limits.py
gutenzwerg Jun 21, 2022
fa6485b
Update macadam_limits.py
gutenzwerg Jun 21, 2022
c1cd25a
Update macadam_limits.py
gutenzwerg Jun 21, 2022
9f28353
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Jun 21, 2022
e58c32b
Update macadam_limits.py
gutenzwerg Jun 22, 2022
fd3a52f
Update macadam_limits.py
gutenzwerg Jul 7, 2022
5d817da
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Jul 7, 2022
c87523b
Update macadam_limits.py
gutenzwerg Jul 7, 2022
31f2dbd
Update macadam_limits.py
gutenzwerg Jul 7, 2022
5ed84a0
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Jul 7, 2022
cbdb8b4
Update macadam_limits.py
gutenzwerg Jul 7, 2022
d1eca3b
Update macadam_limits.py
gutenzwerg Jul 7, 2022
b5f06c8
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Jul 7, 2022
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
Prev Previous commit
Next Next commit
Feature MacAdam_Limits
This features calculates MacAdam_Limits according to a given brightness for every single whavelenght
  • Loading branch information
gutenzwerg authored and tigerxy committed May 23, 2022
commit 47883a818fc40dca196573aee2822d2bf5000ad5
2 changes: 2 additions & 0 deletions colour/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -435,6 +435,7 @@
is_within_mesh_volume,
is_within_pointer_gamut,
is_within_visible_spectrum,
macadam_limits,
)
from .graph import describe_conversion_path, convert

Expand Down Expand Up @@ -847,6 +848,7 @@ def __getattr__(self, attribute) -> Any:
"RGB_colourspace_volume_MonteCarlo",
"RGB_colourspace_volume_coverage_MonteCarlo",
"is_within_macadam_limits",
"macadam_limits",
"is_within_mesh_volume",
"is_within_pointer_gamut",
"is_within_visible_spectrum",
Expand Down