Skip to content

Commit ccfe561

Browse files
authored
Merge pull request #12 from zygmuntszpak/bump_patch_version
Bump patch version
2 parents a7a1fe8 + 8793e4d commit ccfe561

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "ImageContrastAdjustment"
22
uuid = "f332f351-ec65-5f6a-b3d1-319c6670881a"
33
authors = ["Dr. Zygmunt L. Szpak <zygmunt.szpak@gmail.com>"]
4-
version = "0.2.0"
4+
version = "0.2.1"
55

66
[deps]
77
ColorTypes = "3da002f7-5984-5a60-b8a6-cbb66c0b333f"

src/build_histogram.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,9 +127,9 @@ edges, counts = build_histogram(r, 256, minval = 0, maxval = 1)
127127
# References
128128
[1] E. Herrholz, "Parsimonious Histograms," Ph.D. dissertation, Inst. of Math. and Comp. Sci., University of Greifswald, Greifswald, Germany, 2011.
129129
"""
130-
function build_histogram(img::AbstractArray, nbins::Integer = 256;
131-
minval::Union{Real,AbstractGray}=minfinite(img),
132-
maxval::Union{Real,AbstractGray}=maxfinite(img))
130+
function build_histogram(img::AbstractArray, nbins::Integer = 256;
131+
minval::Union{Real,AbstractGray}=minfinite(img),
132+
maxval::Union{Real,AbstractGray}=maxfinite(img))
133133
edges = partition_interval(nbins, minval, maxval)
134134
build_histogram(img, edges)
135135
end

0 commit comments

Comments
 (0)