-
Notifications
You must be signed in to change notification settings - Fork 50
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
Question regarding the number of octaves in fractal noise generator #12
Comments
Yes, it is! We will enter only once in the perlin-numpy/perlin_numpy/perlin2d.py Lines 87 to 96 in 6f077f8
|
Hi, Thanks in advance :) |
Sorry for the delay. You can generate more, for instance (256, 256, 8) with lacunarity=2 if I am not mistaken, and then keep only what you need. |
Hi,
As per the documentation of generate_fractal_noise_2d function, the third argument is the number of octaves in the noise. If the number of octaves is 1, will this function generate the perlin noise since the fractal noise is nothing but multiple octaves of perlin noise combined. So, when the octave is 1 is the perlin noise generated?
Thanks in advance
The text was updated successfully, but these errors were encountered: