Algorithm to determine node adjacency in graphics or multidimensional data sets

learn more… | top users | synonyms

1
vote
1answer
30 views

OpenCV floodfill with mask

The documentation for OpenCV's floodfill function states: The function uses and updates the mask, so you take responsibility of initializing the mask content. Flood-filling cannot go across ...
1
vote
1answer
31 views

Minecraft Flood fill

I am trying to calculate minecraft's light values, but the algorithm I use is very slow. What is a better way to calculate the lighting array? The code looks like this: struct chunk_data { char ...
2
votes
1answer
56 views

Modifying flood fill algorithm for specific task

I am trying to make a tile based game where tiles are filled with random colors and if the user clicks on a tile it disappears. This I have already accomplished. Now, what I want to do is the tile ...
2
votes
1answer
63 views

Using flood fill algorithm to determine map area with equal height

I have a list of lists where each element represents the average height in integers of a all square metres contained in the map (one number= one square metre). For example: map=[ [1,1,1,1], ...
0
votes
1answer
58 views

How to overcome “thin border” issue when using Flood Fill 4 algorithm?

I am writing an application that implements Flood Fill 4 algorithm. It works perfectly fine as long as the borders are thick. The algorithm fills in a certain color within the boarder. I tried to make ...
3
votes
3answers
123 views

Why do I get java.lang.StackOverflowError when using Flood Fill algorithm?

My program is supposed to fill in a non-regular shape with a color (black and white for the beginning) that I specify in the boundaryFill4 method. Here is the link to myImage.png: ...
3
votes
2answers
253 views

Boundary fill (flood fill) algorithm to construct an interactive map. Java

I am building a US interactive map that will respond to user's input values to the JTable. I have already done this but without flood fill algorithm (each state had its own .png image). Now I have ...
2
votes
3answers
288 views

Flood Fill Algorithm - Maze Navigation

I am trying to implement a version of the flood fill algorithm to help solve the shortest distance path of a maze for a micro mouse. It works the same way as the regular flood fill except that each ...
0
votes
1answer
92 views

Is this a Flood Fill program 8-way?

Hey this works correctly, but after comparing it to the 4-way i can't find any differences... If i were to hand this in would it be considered a correct method of implementing an 8-way flood ...
2
votes
2answers
122 views

Simple java game: Filling up figures drawn by a moving cursor

So I'm doing the project of an introduction to Java course and it seems that I chose something that goes way beyond what I'm able to do. :P Any help would be greatly appreciated. This is what I'm ...
3
votes
2answers
137 views

flood fill performance issue on iPhone/iPad

I'm working on a painting application and implementing flood fill algorithm. Here is the code that i am implementing: https://github.com/OgreSwamp/ObjFloodFill/blob/master/src/FloodFill.m and ...
0
votes
1answer
217 views

iOS FloodFill : UIImage vs Core Graphics

I'm considering building an app that would make heavy use of a flood fill / paint bucket feature. The images I'd be coloring are simply like coloring book pages; white background, black borders. I'm ...
1
vote
0answers
202 views

cvFloodFill low and upper diff

i have used cvFloodFill function to prepare mask image along with proper edge detection. Below is sample code. cvFloodFill(mask, new CvPoint(1772, 488), new CvScalar(255, 255, 255,0), ...
0
votes
2answers
93 views

Floodfill memory leak iPhone

I'm implementing a floodfill function in C for the iPhone. The fill works, although I'm having 2 issues. The phone gives a memory warning after a few executions of the code below. Most likely a ...
0
votes
0answers
73 views

How change variable by actionPerformed?

I want to change variable yellow by action performed. But yellow is final variable, and when I add yellow variable to actionPerformed: "Variable yellow is not used". I need change this variable by ...
0
votes
1answer
66 views

MS paint clone - how to store shapes

I've been trying to create an MS paint clone in javascript. Everything seemed perfect until I gave some thought about the fill bucket tool. I was using processing.js library and basically I was using ...
1
vote
0answers
352 views

Floodfill function in OpenCV

What is the meaning of floating range and fixed range given in the documentation of floodfill function?? I used the floodfill function to a grayscale image shown below. The image has three regions ...
0
votes
2answers
139 views

how to add mouseClicked to script

I have floodfill algorithm and I want add to this mouseClicked, but I dont know how becouse I have many errors. Here is my code. I want get the x,y possition from mouseClicked and give it to ...
1
vote
1answer
51 views

Why am I getting exc_bad_access errors for objectAtIndex in my floodfill algorithm

I have a flood fill function: -(void) fillArea :(int) fillNum x:(int) xSpot y:(int) ySpot { int gridValue = 1; int gridCount = [theGrid count]; [[theGrid objectAtIndex:(xSpot+ySpot*120)] ...
5
votes
2answers
219 views

Flood Fill implementation

This is my C# implementation of a stack-based flood fill algorithm (which I based on wikipedia's definition). Earlier while coding, I only wanted to see it work. And it did. Then, I wanted to know the ...
2
votes
2answers
249 views

Perform floodfill on UIImage

I'm trying to perform floodfill on UIImage that has opacity. I tried implementing a 4-Way floodfill with CG(http://en.wikipedia.org/wiki/Flood_fill) but reading the pixel colours and colouring pixels ...
4
votes
3answers
399 views

Applying pathfinding algorithm (Tower Defense) in C++

I've implemented flood fill algorithm that takes array[15*15] with path and generates a queue of steps he took while filling the path. tl;dr it looks like this std::queue <int> f_path; void ...
2
votes
2answers
417 views

Flood Fill using matlab

I am new in MATLAB, I am trying to implement flood filling using this algorithm in matlab, I dont know what I did wrong may be I didnt used recursive function right, but still I dont whats going wrong ...
1
vote
1answer
152 views

StackOverflow in my flood fill

I am currently creating a little paint program for exercise. Right now i'm trying to do the paint bucket tool, or in other words a flood fill. The funny thing is: if the number of pixels which have to ...
1
vote
2answers
320 views

My floodFill algorithm works partially

public void floodFill(int x, int y) { if (x >= 0 && x <= 9 && y >= 0 && y <= 9) { if (mines[x][y] == 0) { ...
0
votes
2answers
255 views

FloodFill - Minesweeper, Explanation needed

I'm trying to make a Minesweeper-like game in Java and I've got most of it to work but something I need help with is FloodFill - http://en.wikipedia.org/wiki/Flood_fill . Not really help ... but can ...
2
votes
0answers
126 views

Is there a parallel flood fill implementation?

I've got openMP and MPI at my disposal, and was wondering if anyone has come across a parallel version of any flood fill algorithm (preferably in c). If not, I'd be interested in sketches of how to do ...
0
votes
2answers
279 views

Recursive Flood Fill - Checking Boundries

I Have a recursive flood fill of legal neighbours in matrix ( legal neighbour is a neighbour with same color), the flood is not filling all the legal neighbours in the array. the board I`m using for ...
0
votes
2answers
98 views

Identifying lakes in a bit mask in JavaScript

I have an algorithm that generates "continents" using simplex noise, so it'll generate a height map, and when a pixel/tile is above a certain level it'll be recognised as land, otherwise it's water. ...
1
vote
2answers
223 views

Fast Flood Fill

So I have a white picture with a black squiggly line separating the top half from the bottom half. I need to make the bottom half black while keeping the top half white. Pretty simple. What is the ...
-1
votes
1answer
727 views

Efficient and practical flood fill algorithm in Java? [closed]

I need a flood fill algorithm for using with BufferedImage and Graphics2D in Java. I do not need the simple recursive (DFS) or queue (BFS) versions of this algorithm due to their impractically. I need ...
0
votes
1answer
145 views

How to do custom drawing in on a image in objective-c

first of all i want to say that i'm newbie in objective-c. till know i have build an app that simply draws on one image (which is .png image that has 3 colors: red green blue). the applications draws ...
5
votes
1answer
2k views

OpenCV Skin Detection

I've been doing some skin detection but can't get a smooth one. The image below contains the input (left) and output (right) using the code also attached below. Now, the desired output should have ...
3
votes
2answers
509 views

Recursion - Flood Fill Algorithm

I need to write a flood fill algorithm to be used in a larger code that fills specific cells of a cave with different colors of water based on which room they are in. For some reason my recursive ...
1
vote
1answer
177 views

actionscript 3.0 transparent image floodfill

I want to use bitmapData.floodfill() method to fill the image by using "onclick" event (like paint bucket does). But the problem is that this method doesn't work as i excepted when i use transparent ...
2
votes
1answer
433 views

iOS opencv floodfill Error

I'm trying to port my C++ opencv App to iOs, but I'm always getting this error : OpenCV Error: Unsupported format or combination of formats () in cvFloodFill, file ...
0
votes
1answer
177 views

Fill WriteableBitmap more efficient

I create WriteableBitmaps on the fly. Is this the efficient and best way to do it? var image = new WriteableBitmap(128, 128); var colorBuffer = Enumerable.Repeat( new[] {this.ImageColor.B, ...
1
vote
1answer
250 views

GLSL: is it possible to create mask of one-colored area which contains central pixel?

I want to create effect like "Magic Wand" in Photoshop for central pixel of screen with GLSL shaders in my iPhone app (capturing image from camera). Now I've made this by getting array of pixels and ...
0
votes
2answers
621 views

android using flood fill algorithm getting out of memory exception

after your suggestions i got working code: public class FingerPaint extends Activity { private RelativeLayout drawingLayout; private MyView myView; @Override protected void onCreate(Bundle ...
2
votes
1answer
1k views

OpenCV - Floodfill onto new Mat

Given a point on an image, I'd like to floodfill all points connected to that point - but onto a new image. A naive way to do this would be to floodfill the original image to a special magic colour ...
2
votes
2answers
324 views

Flood Fill Optimization: Attempting to Using a Queue

I am trying to create a filling method which takes the initial coordinate specified by the user, checks the character and then changes it as desired. After doing so, it then checks adjacent squares ...
-1
votes
1answer
234 views

How to optimize a generic flood fill algorithm to prevent stack overflow?

The generic implementation of flood-fill algorithm runs into stack overflow, is there any way to optimize this? I am using this algorithm to find distinct void zones within building models. I voxelize ...
1
vote
0answers
150 views

Android Fill color in similar parts of Bitmap

I am developing a small kid painting app in which I am using Flood fill Algo to fill color into bitmap image. But I need to develop app like when I click on one part of the image, the algorithm ...
1
vote
2answers
293 views

Flood fill algorithm memory leak

I've got a memory leak somewhere. I've searched it over so many times, and it looks solid to me. I just.. can't... find it... Ok, background. This is a stack driven flood fill, and this bit of code is ...
0
votes
1answer
247 views

Floodfill Not working (c)

I am having some trouble with my floodfill function not working. The purpose of this assignment is to see if P and C are connected within the array. In the floodfill function it doesnt seem to be ...
0
votes
1answer
159 views

Loop Encountered When Using Flood Fill

I have encountered an infinite loop when running the following code. Inside a grid that is surrounded by blocks, a predefined square is started with that this implementation runs off of. A square is ...
3
votes
2answers
205 views

Finding open contiguous blocks of time for every day of a month, fast

I am working on a booking availability system for a group of several venues, and am having a hard time generating the availability of time blocks for days in a given month. This is happening ...
1
vote
3answers
717 views

Recursive floodFill function? C++

So recursion is not my strong point, and I have been challenged to make a recursive floodFill function that fills a vector of a vector of ints with 1's if the value is zero. My code keeps segfaulting ...
0
votes
1answer
522 views

Flood Fill Alogorithm in Iphone Apps

I want to implement flood fill algorithm in my iphone app.I have been searching from long days and i have seen all the stack overflow answer but nothing helped me. Please can any one post some sample ...
1
vote
2answers
148 views

Algorithm for 'flooding' an area

I need to inspect all the cells of a grid that my game character can reach. To do this, I need to start from the characters position and then 'flood' the area to find all the reachable cells (cells ...

1 2 3