-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Fix overlay conversions #17102
Fix overlay conversions #17102
Conversation
eec3b17
to
d408bd5
Compare
We don't want to do any colorspace conversion in the overlayed image. Thus we - include colorin module in the "module filter out" list - we don't enforce colorin via it's commit_params if we develop with finalscale enabled.
d408bd5
to
33dd8a0
Compare
Today I had a need to use the composite module, and the color was bad. I then tried the demo I had posted on the PR when working on this, and the color was bad. I remembered about this PR, testing it and all was back to normal. What I don't understand is that this was working when release 4.8 was done since I tested it... What could have been broken this since then... Really puzzling ! But for sure this PR is correct to me. Will double check later. |
I think we had this wrong also in 4.8 ... |
Agreed, but it was ok at some point as I had tested and published examples using this module in the PR. See for example: In original module (first implementation), commit fca903e:
But is was add on Jun 16th in commit a775869 by you. I probably didn't test properly this change or at least didn't pay attention to the color shift. Really too bad that I missed that :( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Obviously correct and corresponding to the initial implementation of overlay module.
Indeed i introduced that issue, sorry about that and about me not pushing harder on this pr :-( |
@jenshannoschwalm : That's also my fault, so not problem. The good news is that I have added two tests for the overlay module (only self referencing overlay for the testsuite). |
We don't want to do any colorspace conversion in the overlayed image.
Thus we
See #17060
@TurboGit not completely sure about this yet thus WIP.