Tagged Questions
Perlin noise is a procedural texture primitive, a type of gradient noise used by visual effects artists to increase the appearance of realism in computer graphics.
14
votes
3answers
853 views
Simplex noise vs Perlin noise
I would like to know why Perlin noise is still so popular today after Simplex came out. Simplex noise was made by Ken Perlin himself and it was suppose to take over his old algorithm which was slow ...
12
votes
2answers
5k views
Random / noise functions for GLSL
As the GPU driver vendors don't usually bother to implement noiseX in GLSL, I'm looking for a "graphics randomization swiss army knife" utility function set, preferably optimised to use within GPU ...
10
votes
1answer
288 views
How can I generate Perlin noise on a spherical surface?
I am trying to generate terrain using Perlin noise. I understand how to generate it using Cartesian coordinates, but can't quite wrap my head around how it would work on a sphere. I know that you can ...
8
votes
2answers
4k views
Perlin Noise Generation for Terrain
I'm trying to implement some source code I found online to generate a height map using Perlin Noise. I've successfully managed to get the height map, using the noise3 function with the third ...
8
votes
4answers
344 views
What content have you made/seen made using procedural techniques
Hey S.O. guys,
I was looking at some study i have to do in the future to do with procedural generation techniques and i was wondering what type of content you have:
Developed
Helped Develop
Seen ...
6
votes
1answer
92 views
How is Perlin-noise in flash implemented?
Over at gamedev.SE we discovered that the flash implementation of Perlin-noise seems to deviate quite a bit from other implementations.
I didn't find any implementation details online, but I wondered ...
6
votes
1answer
592 views
Best way to add seed to Perlin noise?
I'm trying to implement 2D Perlin noise generation in C++, and some implementations I found use no seed at all (here, here or here). Other implementations take a seed value to get different noise ...
5
votes
2answers
194 views
JavaScript simplex / perlin noise
I'm trying to create a perlin / simplex / value noise function in JavaScript that will give results similar to the following:
(Note: this image has already had a treshold applied. I want it without ...
5
votes
2answers
297 views
Using Perlin noise to create lightning?
Actually I am having several questions related to the subject given in the topic title.
I am already using Perlin functions to create lightning in my application, but I am not totally happy about my ...
5
votes
2answers
441 views
Perlin Noise detail level. How to zoom in on a landscape?
I've written my own Perlin Noise implementation and it works well. I can 'zoom' in and out by changing the frequency, but as I zoom in the noise gets smoother and smoother.
Assume I have a landscape ...
5
votes
4answers
1k views
How to create a fractal cube?
I would like to render volumetric clouds in OpenGL.
I found an interesting paper that describes a simple technique to render volumetric clouds.
(http://www.inframez.com/events_volclouds_slide18.htm)
...
4
votes
2answers
213 views
C# Version of Improved Noise keeps returning 0
I'm trying to implement Improved Noise in my XNA game, but my Improved Noise function keeps returning 0.0f. It's the exact same code as Ken Perlin's (http://mrl.nyu.edu/~perlin/noise/), just ported ...
4
votes
3answers
1k views
How to generate Perlin Noise on an iPhone
I want to create an animated perlin noise on the iPhone, so I can ultimately do something like this: http://dl.dropbox.com/u/1977230/example.png
I've looked and looked, but can't find anything ...
3
votes
3answers
1k views
How is a 3d perlin noise function used to generate terrain?
I can wrap my head around using a 2d perlin noise function to generate the height value but I don't understand why a 3d perlin noise function would be used. In Notch's blog, ...
3
votes
1answer
567 views
Wrapping 2D perlin noise
I'm working with Perlin Noise for a height map generation algorithm, I would like to make it wrap around edges so that it can been seen as continuous.. is there a simple way or trick to do that? I ...
3
votes
4answers
201 views
Random.Next() - finding the Nth .Next()
Given a consistently seeded Random:
Random r = new Random(0);
Calling r.Next() consistently produces the same series; so is there a way to quickly discover the N-th value in that series, without ...
3
votes
1answer
324 views
How do I create tileable solid noise?
Hey guys, I'm trying to figure out how to generate tileable fractals in code (for game maps, but that's irrelevant)
I've been trying to modify the Solid Noise plug-in shipped with GIMP (with my ...
2
votes
1answer
90 views
Perlin Noise for 1D?
Try as hard as I can, I cannot find any real tutorials on Perlin\Samplex Noise in 1D.
I've searched all around the internet but just cannot find anything. Any sites I do come across mentioning 1D ...
2
votes
1answer
124 views
Perlin noise for motion?
I'm successfully using Perlin noise to generate terrain, clouds and a few other nifty things. However, I'm now trying to animate a group of flying insects (specifically fireflies), and it was ...
2
votes
1answer
164 views
Fastest Perlin-Like 3D noise algorithm?
It's been well over 20 years since Ken Perlin first invented his noise. Has anybody managed to make a faster kind of 3D noise generator with properties close to Perlin's (procedural, natural-looking ...
2
votes
1answer
223 views
Texture coordinates for dynamic terrain - OpenGL
Can someone please describe a common technique used to calculate texture coordinates for a terrain that dynamically changes every frame? I have a perlin noise function implemented in a vertex shader ...
2
votes
1answer
141 views
On-the-fly Terrain Generation Based on An Existing Terrain
This question is very similar to that posed here.
My problem is that I have a map, something like this:
This map is made using 2D Perlin noise, and then running through the created heightmap ...
2
votes
2answers
379 views
Help with using the perlin noise library libnoise
When I call libnoise's getvalue function with x, y, and z as integers I always get 0 back as a result. Is this normal? When I try 1.25, 0.75, 0.5 as in the tutorial ...
2
votes
0answers
353 views
3D Perlin noise analytical derivative
I am currently implementing a 3D Perlin noise bump mapping using Shader Model 4 (DirectX 10 HLSL). Generating the noise itself is not a big problem (there are tons of tutorials and codes around) but ...
1
vote
1answer
61 views
Generating batches of n-dimensional Perlin noise using Python and NumPy
I managed to grasp the way Perlin noise works and implement a pixel-at-a-time version using this awesome PDF as a reference, but, quite obviously it's incredibly slow.
First thought would be to ...
1
vote
0answers
39 views
Tilable 3d noise in texture?
I've looked high and low for an answer to this, but I haven't found anything yet. Here's my question:
Can you pack pre-calculated noise into a 2d texture in such a way as to be able to calculate a ...
1
vote
0answers
140 views
perlin simplex worley noise libraries for tiling in javascript or HTML5 in general?
I am curious if there are libraries already developed for creating these noises in javascript?
I have searched the web for about two hours looking for libraries in javascripts. I have seen this ...
1
vote
1answer
113 views
Generate procedural\perlin noise in matlab
I am looking for a simple way to generate something similar to procedural\perlin noise in matlab.
It just needs to have the general perlin noise traits, not to replicate ken perlin's method exactly. ...
1
vote
1answer
183 views
Perlin noise: I have the source code, now what?
I have been looking all over the internet on how exactly to use the Perlin noise class (the C version), but I can't seem to find anything.
Here's what I'm doing:
double height = noise1(12);
...
1
vote
1answer
261 views
How does a perlin noise field work?
I'm looking at this example in particular:
http://www.airtightinteractive.com/demos/processing_js/noisefield08.html
And here's the code for it:
...
1
vote
1answer
232 views
How can I add scaling factors to my “perlin” noise generator?
I have a Perlin noise generator which I am attempting to use to create scrolling terrain.
I've got a center terrain, eight terrains of the same side surrounding it (these are working fine) and a ...
1
vote
2answers
2k views
Perlin noise algorithm
I'm having difficulty understanding a lot of the highly mathematical papers available online describing how Perlin noise generation works, and I'm wondering if anyone could point me in the direction ...
1
vote
2answers
1k views
Good Perlin noise resources/implementation?
Are there any good resources out there detailing Perlin noise generation? I understand that most languages have noise generating libraries available, but I'm interested in creating my own for ...
1
vote
2answers
382 views
Offloading to HLSL/GPU without displaying?
As far as I know, certain mathematical functions like FFTs and perlin noise, etc. can be much faster when done on the GPU as a pixel shader. My question is, if I wanted to exploit this to calculate ...
1
vote
1answer
152 views
Procedural Hash Function
I am wondering what is the best hash function for procedural textures, especially perlin noise. I know about the PRNG posted on this page, but this claims that it is not a good PRNG
Thanks
0
votes
1answer
98 views
Java: 2D Perlin Noise Creation
There are not many easy-to-follow Perlin Noise tutorials out there and certainly not in Java or 2D. I followed this tutorial to a point but it doesn't explain 2D noise very much at all. I know you ...
0
votes
0answers
73 views
Simplex Noise Seeding
So I'm using the noise library from pypi to create simplex noise for my tiled map, I am now looking for ways to seed it.
I've tried with a 3D simplex noise and used the z axis as seed, it didn't work ...
0
votes
0answers
92 views
Perlin Noise in Python? [closed]
I have a 100x100 image (filled with #CCCCCC) that I want to do a perlin noise function on and make changes to the image.
I do not want the noise to be random however. I want to generate using a fixed ...
0
votes
1answer
54 views
noise() doesn't give me a wide range of values
I was trying to generate a pseudo-random angle in processing today using noise but it is not working as I would have hoped.
float xoff = 0;
float inc = 0.01;
void draw(){
float vx = cos( ...
0
votes
2answers
351 views
Software Perlin noise implementation
I have written a 2D Perlin noise implementation based on information from here, here, here, and here. However, the output looks like this.
public static double Perlin(double X, double XScale, double ...
0
votes
1answer
59 views
Generation of Terrain Noise with a Mask?
I have a 2D map in black-and-white with the white parts that should be above sea-level and the black parts below sea-level. I'm not sure how to go about generating terrain to fit to that mask. It ...
0
votes
2answers
133 views
Light generation algorithm for clouds on the iOS platform
I'd like to fill the background of my app with animated clouds. I did some research and stumbled upon the perlin noise algorithm which seems to be fitting. However even in the first test it was ...
0
votes
1answer
78 views
Strange CGImage creation problem
I'm encountering a pretty strange problem when creating a CGImageRef from raw data on iphone. I'm trying to create a CGImageRef from a perlin noise generating function that takes x, y, z, and t and ...
0
votes
1answer
176 views
My “perlin” noise effect shader produces either all-white or all-black
I'm trying to code a "perlin" noise shader in NVidia FX Composer. However, no matter how I tweak the noise function, it returns either 100% white or 100% black. I have no clue how to solve this or ...
0
votes
2answers
555 views
Perlin's Noise with OpenGL
I was studying Perlin's Noise through some examples @ http://dindinx.net/OpenGL/index.php?menu=exemples&submenu=shaders and couldn't help to notice that his make3DNoiseTexture() in perlin.c uses ...
0
votes
2answers
730 views
Procedural Planets, Heightmaps and textures
I am currently working on an OpenGL procedural planet generator. I hope to use it for a space RPG, that will not allow players to go down to the surface of a planet so I have ignored anything ROAM ...
0
votes
1answer
574 views
Improved Perlin Noise module for Lua
I need Improved Perlin Noise in my Lua code.
Are there any decent open-source Lua C modules available?
Or is there any nice C library that I can write a wrapper for (perhaps with other noise ...