We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When loading images you apply gamma expension (correction) with following code:
poisson_blend/src/main.cpp
Line 69 in 94e6a4a
But this is actually gamma compression. The correct way for gamma expansion would be
pow(buf[i + 0] / 255.0f, GAMMA),
Same issue is when saving the image, but opposite.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When loading images you apply gamma expension (correction) with following code:
poisson_blend/src/main.cpp
Line 69 in 94e6a4a
But this is actually gamma compression. The correct way for gamma expansion would be
Same issue is when saving the image, but opposite.
The text was updated successfully, but these errors were encountered: