i'm trying to implement an algorithm which is flood-fill alike. the problem is that i'm not sure in what way i should implement it e.g recursive - non-recursive.
i know that each has its defects but one of them must be faster than the other one. the recursive opens new function on the stack when the non-recursive allocates 4 new points each time.
example for the non-iterative :

Stack<Point> stack = new Stack<Point>();
    stack.Push(q);
    while (stack.Count > 0)
    {
        Point p = stack.Pop();
        int x = p.X;
        int y = p.Y;
        if (y < 0 || y > h - 1 || x < 0 || x > w - 1)
                continue;
        byte val = vals[y, x];
        if (val == SEED_COLOR)
        {
                vals[y, x] = COLOR;
                stack.Push(new Point(x + 1, y));
                stack.Push(new Point(x - 1, y));
                stack.Push(new Point(x, y + 1));
                stack.Push(new Point(x, y - 1));
        }
    }

edit : im going to apply the following algorithm on a 600X600 pixels map. though the floodfill isn't going to be applied on the entire map, it should cover about 30% - 80% of the map each iteration. my point is to discover edges in a height map and mark those edges for a further use.

link|improve this question

57% accept rate
This is really implementation-dependent. – templatetypedef Feb 16 at 20:25
you should say what language you are using. in c or java, you would want the iterative solution. – andrew cooke Feb 16 at 20:40
C++ mainly.. if there is a quicker way to use CUDA / OMP .. – igal k Feb 16 at 21:28
feedback

3 Answers

Recursive flood fill has only one thing going for it: it is easy to code. About everything else goes against it, especially its ability to overflow stack on fills of significant size.

You should always prefer non-recursive flood fill solution for any code that has a chance of becoming production.

link|improve this answer
feedback

I think, recursion is very expensive. Make a parallel array of bytes of 0. For the fresh border of flooded area it will have value 1. For the inside of the flooded area - value 2.

So you will check for the new points only on the border.

BTW, you have forgotten to check coordinates of the new points for being on the drawn border or on the border of the whole rectangle.

As for cycling through all neighbouring points, look at my algorithm here

link|improve this answer
feedback

A recursive flood fill can overflow the stack, if the image is complex. Use the non-recursive flood fill.

If you care about the allocations, you can represent a point as a packed value of type long, and code up your own LongStack that internally stores the long values in an array.

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.