-
Hi there, is there an "C++ wrapper" for "Colour" existing? thx in advance Alex |
Beta Was this translation helpful? Give feedback.
Answered by
KelSolaar
Jan 25, 2022
Replies: 1 comment 1 reply
-
Hi Alex, There is no C++ wrapper, however, you could possibly use Cheers, Thomas |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
KelSolaar
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi Alex,
There is no C++ wrapper, however, you could possibly use
pybind11
to embed Colour in your code: https://pybind11.readthedocs.io/en/stable/advanced/embedding.html. Note that Colour requires Imageio, Numpy and Scipy (and their hard dependencies) to run. You could still mock Scipy and imageio whilst retaining some functionality but Numpy is fully required.Cheers,
Thomas