Tagged Questions
The flood-fill tag has no wiki summary.
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 ...
12
votes
5answers
8k views
Fill the holes in OpenCV
I have an edge map extracted from edge detection module in OpenCV (canny edge detection). What I want to do is to fill the holes in the edge map.
I am using C++, and OpenCV libraries. In OpenCV ...
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
601 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
2answers
187 views
Flood filling of 3-dimensional polygon
here is a problem for you ;)
I have a 3-dimensional array filled with 1s and 0s. The 1s represent 3 dimensional complex polygons ( not simple polygons ). Only the boundaries of the polygons have the ...
5
votes
3answers
882 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
4answers
245 views
Different Methods of Performing FloodFill
OK everyone I have several different methods of performing a FloodFill. All of them cause problems. I will list the 3 methods and explain what happens with each one. If anyone could give me some ...
4
votes
3answers
508 views
Vector graphics flood fill algorithms?
I am working on a simple drawing application, and i need an algorithm to make flood fills.
The user workflow will look like this (similar to Flash CS, just more simpler):
the user draws straight ...
4
votes
2answers
708 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 ...
3
votes
1answer
71 views
Creating a matrix containing a filled ellipse based on a non-contiguous outline
I'm trying to create a matrix of 0 values, with 1 values filling a ellipse shape. My ellipse was generated using minVolEllipse.m (Link 1) which returns a matrix of the ellipse equation in the 'center ...
3
votes
2answers
330 views
Delphi - floodfill with gradient?
Is there a way to use Canvas.FloodFill in D2007 to fill a custom shaped object with gradient colors. Going from white to a border color.
I couldn't google out anything useful.
Or just any other way ...
3
votes
2answers
537 views
Floodfill in objective c
HI,
I am trying for a coloring app and to figure out floddfill in objective c anybody did this before..???I am reading all pixel data in a picture and i can change it also..but floodfill can only do ...
3
votes
1answer
214 views
What is a good quick pathfinding algorithm?
What is a good path finding algorithm when you care the amount of time it takes but not how long the path is.
Also is there a faster algorithm if you don't care about the path at all but just want to ...
3
votes
2answers
2k views
How can I perform flood fill with HTML Canvas?
Has anyone implemented a flood fill algorithm in javascript for use with HTML Canvas?
My requirements are simple: flood with a single color starting from a single point, where the boundary color is ...
2
votes
1answer
671 views
FloodFill in iphone
I'm very new to iphone development.I want to create a application using FloodFill algorithm in iphone.I'm not having any idea of FloodFill.Please Explain me the purpose of FloodFill algorithm.If you ...
2
votes
1answer
471 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
129 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
0answers
158 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
292 views
Matlab function equivalent for Python (Flood Fill)
Quick question, I'm looking for a python function that performs the equivalent job that matlab's imfill.m does. I realize that python has openCV but I have been unable to get that to work properly and ...
1
vote
1answer
452 views
Different color after image flood fill
I have been playing with image flood fill that I found here on Stack Overflow.
I think the code is not the problem. Though if you have a better one I would be glad to see (or even better if you know ...
1
vote
1answer
156 views
Flood fill algorithm that takes alpha into account without leaving fringes around anti-aliased lines?
I've implemented a typical flood fill algorithm and it works as expected when solid colors are used where I use the Euclidean distance between the ARGB components to compare colors.
My problem is ...
1
vote
3answers
624 views
C++ algorithm for flood filling a binary image
I am trying to simulate a matlab function "imfill" for flood filling a binary image (2D matrix of 1's and zeros).
I want to specify a starting point in the matrix, and flood fill like a 4 connected ...
1
vote
1answer
373 views
Flood Filling in iPad too SLOW
I am using Flood Filling for one of my Coloring app on iPad.
The app basically fills color within the black line of the image and i am able to do this with no problem , but its too slow.
Conclusion:
...
1
vote
1answer
294 views
3D Flood Fill using Java
I am using the JMonkey Engine to create a 3D bounding box and then I'm trying to use smaller boxes to flood fill the bounding box. Unfortunately I can't find a 3D flood fill algorithm.
Does anyone ...
1
vote
0answers
161 views
Java3D Floodfill
I need to get a floodfill algorithm working for 3D shapes in Java3D, I have already done 2D shapes, using Buffered Images and Rasters. What I need to do now is to set a 3D point as the seed and ...
1
vote
1answer
166 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
3answers
433 views
Is it possible to use “Fill with color” function on Delphi's Image component?
I have a TImage component on the form. I need to implement the following functionality:
(If mouse pointer is over point with red color, then apply "Fill with color green" to that point)
Here by ...
1
vote
0answers
309 views
FloodFill iphone implementation.How to do this?
I'm going to developing an application for coloring the image.For that floodfill algorithm is used.I don't know how to implement the floodfill algorithm in iphone.I want to do the same way as ...
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
4answers
397 views
I want Flood Fill without stack and without recursion
I wanted to know how to apply flood fill on array , my array is two dimensional , which contains times new roman font type letter boundry.
The boundry line contains 1's and inside and outside all 0's.
...
1
vote
3answers
3k views
Flood fill using a stack
I am using the recursive Flood fill algorithm in Java to fill some areas of a image.
With very small images it works fine, but when de image becomes larger the JVM gives me a Stack Over Flow Error.
...
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 ...
1
vote
2answers
1k views
Fill a touch drawn path of CGPoints using OpenGL or CoreGraphics
I have a NSArray of points that make up a path. I can detect when it self-intersects. When this happens, I try to fill the path.
First I used CoreGraphics, now I'm using openGl to draw a triangle ...
0
votes
0answers
49 views
iPhone paint bucket
I am working on implementing a flood-fill paint-bucket tool in an iPhone app and am having some trouble with it. The user is able to draw and I would like the paint bucket to allow them to tap a spot ...
0
votes
0answers
28 views
Flood Fill - the largest stack
I need an advice - what's the worst situation for flood fill - I mean when the stack is enormously large - does any of you have an idea or (better) a picture where the algorithm would need a big ...
0
votes
1answer
183 views
Android flood-fill algorithm
Does anyone know a iterative and efficent algorithm for flood-fill?
Or is there any way to implement recursive floodfill algorithm without stack overflow error?
tried that one Flood fill using a ...
0
votes
0answers
115 views
android floodfill opencv UnsatisfiedLinkError
Story:
On the android screen I display a picture with a ruler in it. I klick inside the ruler and floodfill it like this:
1Imgproc.floodFill(image0, mask, seed, new Scalar(20,40,60));
...
0
votes
1answer
100 views
filling shapes with patterns in CImg
I want to be able to draw shapes and flood-fill them with various fill patterns (diagonal lines, stipple dots, etc).
The CImg library includes functions for drawing various shapes with an arbitrary ...
0
votes
2answers
201 views
Drawing/coloring application - flood fill algorithm/clipping region
I have to develop a coloring application. Basically the user is presented with an image. An outline of a character maybe and the user can fill it using different colors. I've looked at a few options ...
0
votes
2answers
250 views
Fill Color Selected Area in UIView upper Layer
I am trying to develop paint type App for iPhone/iPad. I have done 70% but one functionality is taking time to complete it. I have added To Fill Selected Area with Selected Color functionality inside ...
0
votes
1answer
166 views
jquery flood fill algorithm
if(isEmptySquare(this)){
adjacents = adjacentSquares(this);
$(adjacents).each(function(){
uncoverSquare(this);
//if(isEmptySquare(this)){
...
0
votes
1answer
297 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
0answers
178 views
Setting color to part of UIView or ImageView
I am trying for a coloring app and Is there any way to set color to a particular part of a UIView or UIImageView.I checked the Quatrs class to do this .A sample image i want to work with is given ...
0
votes
2answers
1k views
How to Implement FloodFill Algorithm in iphone
I want to implement floodfill algorithm in iphone.What are the methods are used to implement the floodfill algorithm in iphone.Please any one guide me in this regard.
If i want to include any of the ...
0
votes
2answers
255 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
311 views
iphone - Filling color in closed image
I'm trying to create an app for children. It will have different images. And those images will have different closed shapes like stars, balls or any other similar images.
I am aware of how to draw on ...
0
votes
0answers
176 views
How to change the background of an image in iPhone app?
I'm in the process of creating an app and I want to include a color palette where the user can pick a color and apply the color to the background of an image (i.e. change the color of the walls of a ...
0
votes
1answer
341 views
Linked-list representation of disjoint sets - omission in Intro to Algorithms text?
Having had success with my last CLRS question, here's another:
In Introduction to Algorithms, Second Edition, p. 501-502, a linked-list representation of disjoint sets is described, wherein each list ...
0
votes
1answer
240 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 ...