ImageBinarization.jl icon indicating copy to clipboard operation
ImageBinarization.jl copied to clipboard

A Julia package of algorithms for analyzing images and automatically binarizing them into background and foreground.

Results 5 ImageBinarization.jl issues
Sort by recently updated
recently updated
newest added

https://github.com/JuliaImages/IntegralArrays.jl

Currently, ImageBinarization doesn't support transparent colors (e.g., RGBA) so I open this issue to see your opinions: - leave it unsupported - drop the transparent channel - keep the transparent...

In [#164](https://github.com/JuliaImages/juliaimages.github.io/issues/164),It was pointed out that even though ImageBinarization.jl has very detailed explanations in docstring.There is a need for setting up a demo page and move the explanations to the...

It would be convenient to make `binarize(alg)` return a function so that ```julia map(binarize(Yen()), imgs) ``` This is equivalent to `binarize.(Ref(Yen()), imgs)` but a function can be composed together with...