-
Notifications
You must be signed in to change notification settings - Fork 37
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
Add blue noise #66
Comments
strange to say this but... those noises are beautiful :) Thank you for the links. |
From the 3rd link above:
https://github.com/tommyettinger/sarong/blob/master/src/test/java/sarong/PermutationEtc.java I wonder if that repo has useful random number generators for us: |
A C++ implementation from 2016 https://github.com/bartwronski/BlueNoiseGenerator |
A post showing blue noise dithering https://surma.dev/things/ditherpunk/ A comment about that post in hackernews:
|
This site includes 10+ posts about blue noise: https://blog.demofox.org/ And it links to this GPU implementation It sounds like generating blue noise textures is too expensive to do in real time. Here they are free to download: Update: it seems that my desired use case is described in this paper: http://johanneskopf.de/publications/blue_noise/paper/Recursive_Wang_Tiles_For_Real-Time_Blue_Noise.pdf in point 6.2 A video about the same paper found by Ricardo: https://www.youtube.com/watch?v=0NMmB-IlDsk |
or
Resources
The text was updated successfully, but these errors were encountered: