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
I found a bug in compute.toys (it seems);
The texture provided in compute.toys, blue-noise (the last one), is not stored in linear space but has been mapped to gamma space;
Because the distribution of blue-noise between 0.0 ~ 1.0 is unbiased, the number of pixels >0.5 should be roughly equal to the number of pixels <=0.5;
However, the blue-noise provided by compute.toys obviously does not conform, as shown in the picture:
The left side is <= 0.5, the right side is >=0.5;
Only by applying a gamma correction of pow(blue_noise, 1 / 2.2) can the correct image be obtained;
So I suspect that an incorrect gamma mapping, pow(color, 2.2), was added when generating the blue-noise.
__THE BUG SHOWCASE__: https://compute.toys/view/928
The text was updated successfully, but these errors were encountered:
Submit pull request please 🙏
Sorry, something went wrong.
No branches or pull requests
I found a bug in compute.toys (it seems);
The texture provided in compute.toys, blue-noise (the last one), is not stored in linear space but has been mapped to gamma space;
Because the distribution of blue-noise between 0.0 ~ 1.0 is unbiased, the number of pixels >0.5 should be roughly equal to the number of pixels <=0.5;
However, the blue-noise provided by compute.toys obviously does not conform, as shown in the picture:
The left side is <= 0.5, the right side is >=0.5;
Only by applying a gamma correction of pow(blue_noise, 1 / 2.2) can the correct image be obtained;
So I suspect that an incorrect gamma mapping, pow(color, 2.2), was added when generating the blue-noise.
The text was updated successfully, but these errors were encountered: