Tagged Questions
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 ...
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 ...
1
vote
3answers
640 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
167 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. ...
0
votes
1answer
302 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
1answer
241 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
3answers
899 views
Blob …how to write non-recursively
I have written the following program, using recursion, but I can't figure out how to write it non-recursively. Every time I run my non-recursive version the numbers are way off. Any suggestions on how ...