Re: Flood Fill
Posted by Gabriel Landini on Feb 15, 2008; 11:27am
URL: http://imagej.273.s1.nabble.com/Flood-Fill-tp3697186p3697189.html
On Thursday 14 February 2008 19:38:28 meastwood98 wrote:
> Ok, how do i use the FloodFill() class within a imageJ plugin? Im not very
> experieced and im not sure what you mean? could you give me an example?
I have used in my Binary Reconstruct plugin:
FloodFiller ff = new FloodFiller(ip);
ff.fill8(x, y);
Cheers,
G.