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 Executing CLF Workflows #1310

Draft
wants to merge 16 commits into
base: develop
Choose a base branch
from
Draft
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
508 changes: 508 additions & 0 deletions colour/io/luts/clf.py

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion colour/io/luts/lut.py
Original file line number Diff line number Diff line change
Expand Up @@ -995,7 +995,10 @@ def linear_table(
if len(domain) != 2:
return domain

attest(is_numeric(size), "Linear table size must be a numeric!")
attest(
is_numeric(size),
f"Linear table size must be a numeric but is {size} instead!",
)

return np.linspace(domain[0], domain[1], as_int_scalar(size))

Expand Down
Empty file.
Loading
Loading