Skip to content

Commit

Permalink
adaptive_equalization.jl: fix typo (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
tbenst authored Oct 21, 2020
1 parent 58e0629 commit e4daf67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/algorithms/adaptive_equalization.jl
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ If `minval` and `maxval` are specified then intensities are equalized to the ran
using TestImages, FileIO, ImageView
img = testimage("mandril_gray")
imgeq = adjust_histogram(img, AdativeEqualization(nbins = 256, rblocks = 4, cblocks = 4, clip = 0.2))
imgeq = adjust_histogram(img, AdaptiveEqualization(nbins = 256, rblocks = 4, cblocks = 4, clip = 0.2))
imshow(img)
imshow(imgeq)
Expand Down

0 comments on commit e4daf67

Please sign in to comment.