In image processing, histogram matching or histogram specification is the transformation of an image so that its histogram matches a specified histogram.[1] The well-known histogram equalization method is a special case in which the specified histogram is uniformly distributed.[2]
It is possible to use histogram matching to balance detector responses as a relative detector calibration technique. It can be used to normalize two images, when the images were acquired at the same local illumination (such as shadows) over the same location, but by different sensors, atmospheric conditions or global illumination.
Consider a grayscale input image X. It has a probability density function pr(r), where r is a grayscale value, and pr(r) is the probability of that value. This probability can easily be computed from the histogram of the image by
Where nj is the frequency of the grayscale value rj, and n is the total number of pixels in the image.
Now consider a desired output probability density function pz(z). A transformation of pr(r) is needed to convert it to pz(z). Each pdf (probability density function) can easily be mapped to its cumulative distribution function by
S(rk)=
k | |
\sum | |
j=0 |
pr(rj), k=0,1,2,3,\ldots,L-1
G(zk)=
k | |
\sum | |
j=0 |
pz(zj), k=0,1,2,3,\ldots,L-1
Where L is the total number of gray level (256 for a standard image).
The idea is to map each r value in X to the z value that has the same probability in the desired pdf. I.e. S(rj) = G(zi) or z = G−1(S(r)).[3]
The following input grayscale image is to be changed to match the reference histogram.
The input image has the following histogramIt will be matched to this reference histogram to emphasize the lower gray levels.After matching, the output image has the following histogramAnd looks like this
Given two images, the reference and the target images, we compute their histograms. Following, we calculate the cumulative distribution functions of the two images' histograms –
F1
F2
G1\in[0,255]
G2
F1(G1)=F2(G2)
M(G1)=G2
M
In typical real-world applications, with 8-bit pixel values (discrete values in range [0, 255]), histogram matching can only approximate the specified histogram. All pixels of a particular value in the original image must be transformed to just one value in the output image.
Exact histogram matching is the problem of finding a transformation for a discrete image so that its histogram exactly matches the specified histogram.[4] Several techniques have been proposed for this. One simplistic approach converts the discrete-valued image into a continuous-valued image and adds small random values to each pixel so their values can be ranked without ties. However, this introduces noise to the output image.
Because of this there may be holes or open spots in the output matched histogram.
The histogram matching algorithm can be extended to find a monotonic mapping between two sets of histograms. Given two sets of histograms
P=\{pi\}
k | |
i=1 |
Q=\{qi
k | |
\} | |
i=1 |
M
\operatorname{argmin}M\sumkd(M(pk),qk)
d( ⋅ , ⋅ )