Skip to content

Commit

Permalink
Implement support for "Canon" v1.2 encodings.
Browse files Browse the repository at this point in the history
Closes #1176.
  • Loading branch information
KelSolaar committed Jul 19, 2023
1 parent ca0bba3 commit 1966033
Show file tree
Hide file tree
Showing 3 changed files with 2,074 additions and 267 deletions.
12 changes: 12 additions & 0 deletions colour/models/rgb/transfer_functions/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,17 @@
oetf_inverse_BlackmagicFilmGeneration5,
)
from .canon import (
CANON_LOG_ENCODING_METHODS,
log_encoding_CanonLog,
CANON_LOG_DECODING_METHODS,
log_decoding_CanonLog,
CANON_LOG_2_ENCODING_METHODS,
log_encoding_CanonLog2,
CANON_LOG_2_DECODING_METHODS,
log_decoding_CanonLog2,
CANON_LOG_3_ENCODING_METHODS,
log_encoding_CanonLog3,
CANON_LOG_3_DECODING_METHODS,
log_decoding_CanonLog3,
)
from .cineon import log_encoding_Cineon, log_decoding_Cineon
Expand Down Expand Up @@ -177,11 +183,17 @@
"oetf_inverse_BlackmagicFilmGeneration5",
]
__all__ += [
"CANON_LOG_ENCODING_METHODS",
"log_encoding_CanonLog",
"CANON_LOG_DECODING_METHODS",
"log_decoding_CanonLog",
"CANON_LOG_2_ENCODING_METHODS",
"log_encoding_CanonLog2",
"CANON_LOG_2_DECODING_METHODS",
"log_decoding_CanonLog2",
"CANON_LOG_3_ENCODING_METHODS",
"log_encoding_CanonLog3",
"CANON_LOG_3_DECODING_METHODS",
"log_decoding_CanonLog3",
]
__all__ += [
Expand Down
Loading

0 comments on commit 1966033

Please sign in to comment.