Tagged Questions

22
votes
9answers
4k views

How to optimally solve the flood fill puzzle?

I like playing the puzzle game Flood-It, which can be played online at: http://floodit.appspot.com/ It's also available as an iGoogle gadget. The aim is to fill the whole board with the least number ...
7
votes
7answers
4k views

does anyone have a working non-recursive floodfill algorithm written in C?

over the last few days I've been desperately trying to find a working floodfill algorithm. Of the many algorithms i've tried only the 'recursive line fill' one behaves exactly as it should with the ...
6
votes
4answers
666 views

Region Growing Algorithm

Hey everyone. I'm really struggling to figure out the logic with this one and was hoping you could help me out. Before I continue I just want to let you know that I am amateur programmer and a ...
6
votes
5answers
9k views

Flood Fill Algorithms

Its the weekend again, and that means I get to play with my hobby project. I've gotten tired of creating test levels by hand, so I thought I'd take a break from engine development and work on a level ...
5
votes
3answers
895 views

Algorithm to create hex flood puzzle

I'm creating a puzzle game that, while playable by hand for easy levels, is meant to be solved by computer programs for harder ones. The puzzle is a flood fill on a hexagonal board. You can try a ...
4
votes
2answers
725 views

Fast way to get the bounding rectangle of a flood fill

I need to perform a flood fill on a region of an image. However I do not actually need the resulting image, I only need to know the smallest rectangle containing all pixels that would be changed by ...
2
votes
1answer
479 views

argh! what is wrong with this floodfill algorithm?

I have been using a floodfill algorithm of the stack-based non-recursive variety and it seems to work perfectly except for one annoying situation: if use a line to cut an image in half and then ...
1
vote
2answers
156 views

Fill 2D shape with rectangles

I am looking to fill an arbitrary 2D shape with rectangles, such as that the 2d shape becomes visible by looking at the composite image of the rectangles. The final result should look similar to ...
1
vote
1answer
183 views

Find out how to flood fill a polygon with the smallest number of vector lines

Say I have a vector polygon with holes. I need to flood fill it by drawing connected segments. Of course, since there are holes, I can't fill it using a single continous polyline: I'll need to ...
1
vote
1answer
176 views

Exceeded memory or invalid memory reference - C++ error

Can someone please illuminate why I am getting the following error with the following code? Execution error: Your program had this runtime error: Exceeded memory or invalid memory reference. ...
1
vote
2answers
1k views

QuickFill/flood fill algorithm in C#/VB.NET

I need a flood fill algorithm to fill existing raster shapes with various colors and fill patterns. From what I know, the QuickFill algorithm is the best way to do a flood fill. I've found a number of ...
1
vote
2answers
2k views

Flood fill algorithm

im working in a simple graphical library in C with turbo C++ because im developing a very primitive version of a paint style program, everyting works well but i can“t get the flood fill algorithm to ...
0
votes
3answers
65 views

which flood-fill algorithm is better for performance?

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 ...
0
votes
1answer
174 views

jquery flood fill algorithm

if(isEmptySquare(this)){ adjacents = adjacentSquares(this); $(adjacents).each(function(){ uncoverSquare(this); //if(isEmptySquare(this)){ ...
0
votes
1answer
319 views

c++ Floodfill algorithm final errors

My floodfilling algorithm is nearly finished, but there is a small error somewhere, I've spent about 3 hours debugging, but i can't seem to find it! note: When reading in I use numbers from 0 to 15 ...
0
votes
2answers
266 views

What sort of fuzzy flood fill algorithms are there?

I'm implementing a flood fill algorithm for the project I'm currently working on. I'm using it for the normal purpose, image editing. I have no problem with the basic algorithm, but I'd like a ...
0
votes
1answer
248 views

Floodfill with “layers”

What I want is to create a vector drawing program with layers, but to avoid using transparency / opacity, I want to draw each shape from lowest layer to highest layer onto a single bitmap. For the ...
0
votes
1answer
998 views

Change FloodFill-Algorithm to get Voronoi Territory for two data points?

I got a grid with two points. I want to calculate the amount squares each point can reach before the other. Currently I implement a FloodFill-Algoritm, which can calculate the amount of squares one ...