Ashwani Rathee
Ashwani Rathee
This is the only case I think when it will stop before filling everything  1,2,3,4 are our verts and `closed=false`.... and luckily there is a boundary other than the...
Worked out the Boundary fill algorithm test2.png: https://i.imgur.com/ImGWeJm.png Made with RectanglePoints and updated CirclePointRadius :)  MRE: ```julia julia> using Images,ImageDraw,ColorVectorSpace julia> function boundaryfill(x::Int, y::Int, fill_color::T, boundary_color::T) where T img=load("test2.png")...
Worked out the Flood fill algorithm flood fill algorithm is in both skimage and matlab test2-floodfill.png: https://i.imgur.com/uqy0lX2.png  MRE: ```julia julia> using ColorTypes, FileIO, ImageDraw, BenchmarkTools julia> img = load("test2-floodfill.png");...
Worked out scan-line fill algorithm  scan-fill is pretty popular because of how robust it is in nature testimage: https://i.imgur.com/JQXW6Fv.png though it will be autocreated during the program  It's...
I think 8-pixel/4-pixel methods could be added as keyword configuration,so yeah these are the good polygon filling algorithms...I would need some discussion and feedback before I go into implementing them...
@johnnychen94 Its been a week,can you give some feedback which is to be implemented and what each should do because they are used for different puposes?
When I don't specify a kwarg in the algorithm( which will be really optional for FloodFill as it won't really need it unless we make it to be so), Ambiguity...
Johnny was working on it here: https://github.com/JuliaImages/ImageCore.jl/pull/179
@Codyk12 can I give it a go?I think I can do it in a more simplified way with RectanglePoints #52
Actually, there isn't much to add with what I know. I think we can add the build histogram(with its graph) and show the threshold..But it would require me to use...