Skip to content

Commit

Permalink
fix syntax error and test utils.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnychen94 committed Jul 22, 2019
1 parent 0fda77b commit 3678ab3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/BinarizationAPI/binarize.jl
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ end
function binarize(::Type{T},
img,
f::AbstractImageBinarizationAlgorithm,
args...; kwargs...)
args...; kwargs...) where T
out = Array{T}(undef, size(img))
binarize!(out, img, f, args...; kwargs...)
return out
Expand Down
1 change: 1 addition & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ include("testutils.jl")
@testset "ImageBinarization.jl" begin
include("util.jl")

# include("adaptive_threshold.jl")
# include("balanced.jl")
# include("entropy.jl")
# include("intermodes.jl")
Expand Down

0 comments on commit 3678ab3

Please sign in to comment.