I'm looking for an algorithm that can generate something like what's in this image:

enter image description here

I've read about drunken walk algorithms but they don't seem to quite fit what I need. I'm not sure if I can achieve what I'm looking for with a heavily modified drunken walk algorithm or if I should be looking for some other algorithm to mess with.

link|improve this question

50% accept rate
The path in that image doesn't seem to cross itself. Is that important for your application? – Ted Hopp Oct 16 '11 at 5:36
@TedHopp Yes, it is important that the path does not cross itself. – Talon876 Oct 16 '11 at 5:41
3  
What you want is called a Self Avoiding Randow Walk, usually abbreviated as SAW. Google for it and you will find several generation methods, as it is a well studied and very important issue in physics, chemistry and biology. The ADN, the polymers and other phenomena are related to this kind of things. Don't expect to find easy and efficient algorithms ... – belisarius Oct 16 '11 at 7:22
2  
FWIW, that image looks like a deformed space filling curve. Could it simply be a mapping of a en.wikipedia.org/wiki/Hilbert_curve, like the warped maps at worldpopulationatlas.org? – mcdowella Oct 16 '11 at 11:45
3  
Why not employing 5 year old kids - It may be cheaper, and has a true random source. – Lior Kogan Oct 16 '11 at 17:41
show 2 more comments
feedback

1 Answer

Since you want to avoid self-intersection, a random walk is going to be difficult to do correctly. You could easily paint yourself into a corner. I would suggest starting with a single line segment that crosses the area, then splitting this line segment somewhere in the middle and shifting the midpoint by some random amount proportional to the length of the line segment. Repeat this process recursively for the two new line segments. If you end up with a midpoint that causes one of the two new line segments to cross an existing line segment, then try a different midpoint. Stop the recursion when your line segments are short (however you want to define that).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.