-
Notifications
You must be signed in to change notification settings - Fork 5
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
Tetrahedral matrix documentation #5
Comments
I should probably put docs on this but try the following order for the tetra matrix: Red, Yellow, Green, Cyan, Blue, Magenta. Or it might be easier to switch the order so that it matches the DCTL. What do you think? Also your pipeline with Tetra + RBF should work but worst case you can try having two pipelines one after each other. |
Thanks I'll give that a try :) All the tools I've seen have been ordered R, G, B, C, M, Y so that would proably make sense, I guess so long as it's documented it doesn't matter too much. They also usually have controls for the black and white points but i don't know if you could pull that out of your code too? If I do two pipelines would it be something like this (pseudo code):
|
Yep that order seems to have worked worked :) I've not got a perfect match but its' very close. I'm using every pixel in the image as a data point, is that too much or is more always better do you think? |
For the two pipelines you can just use the nodes themselves: matrix = TetrahedralMatrix()
matrix.solve(bmpcc_data, film_data)
# Apply the matrix to the existing data
new_bmpcc_data = matrix(bmpcc_data)
rbf = RBF()
rbf.solve(new_bmpcc_data, film_data) As for the number of data points having a lot is fine. It'll likely work so long as the data is high quality and fits what you're trying to match. |
Thanks that's really helpful, I'll give it a shot. |
Hi,
Firstly thanks for creating this library, it's incredibly useful. I was wondering if you could provide some documentation on how to use the results of the Tetrahedral matrix values? Are they the red, green, blue, magenta, cyan and yellow triplets to be used in a standard tetrahedral colour tool or something else? I've set up a simple script to match two test charts as below:
but when I input the results into a tetrahedral node in Nuke I get results that are definitely wrong:
Any help would be greatly appreciated. Also I'm assuming these can also be used in pipelines? Something like this:
If so does the above do a tetrahydral match and then do a RBF match on top of that?
The text was updated successfully, but these errors were encountered: