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
# This demo issustrates the use of [Histogram equalization](https://juliaimages.org/ImageContrastAdjustment.jl/stable/reference/#Equalization-1), [gamma correction matching](https://juliaimages.org/ImageContrastAdjustment.jl/stable/reference/#Matching-1)
7
+
# and [Contrast Limited Adaptive Histogram Equalization](https://juliaimages.org/ImageContrastAdjustment.jl/stable/reference/#AdaptiveEqualization-1)
8
+
9
+
# Histogram equalisation is used to imporve the contrast in an
10
+
# single-channel grayscale image. It distributes the intensity of the image
11
+
# in a uniform manner. The natural justification for uniformity
12
+
# is that the image has better contrast if the intensity levels of an image span
13
+
# a wide range on the intensity scale. The transformation is based on mapping of
14
+
# cumulative histogram
15
+
16
+
using ImageContrastAdjustment, TestImages, ImageCore
17
+
18
+
img =testimage("moonsurface")
19
+
20
+
# Now we will apply Histogram equalisation, gamma correction and Adaptive histogram equalisation
0 commit comments