You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be convenient to make binarize(alg) return a function so that
map(binarize(Yen()), imgs)
This is equivalent to binarize.(Ref(Yen()), imgs) but a function can be composed together with other functions using ∘, or eventually the |> API similar to that in Augmentor:
It would be convenient to make
binarize(alg)
return a function so thatThis is equivalent to
binarize.(Ref(Yen()), imgs)
but a function can be composed together with other functions using∘
, or eventually the|>
API similar to that in Augmentor:Cases that I know in Base are
isequal
,isapprox
(in Julia 1.5),startwith
(in Julia 1.5) andendswith
(in Julia 1.5):The text was updated successfully, but these errors were encountered: