Introduction To Probability
Introduction To Probability
PMF and CDF both terms belongs to probability and statistics. Now the question that should arise in
your mind, is that why are we studying probability. It is because these two concepts of PMF and CDF
are going to be used in the next tutorial of Histogram equalization. So if you dont know how to
calculate PMF and CDF, you can not apply histogram equalization on your image
What is PMF?
PMF stands for probability mass function. As it name suggest, it gives the probability of each
number in the data set or you can say that it basically gives the count or frequency of each
element.
Then we will take another example in which we will calculate PMF from the histogram.
1 2 7 5 6
7 2 3 4 5
0 1 5 7 3
1 2 5 6 7
6 1 0 3 4
Now if we were to calculate the PMF of this matrix, here how we are going to do it.
At first, we will take the first value in the matrix , and then we will count, how much time this value
appears in the whole matrix. After count they can either be represented in a histogram, or in a
table like this below.
PMF
0 2 2/25
1 4 4/25
2 3 3/25
3 3 3/25
4 2 2/25
5 4 4/25
6 3 3/25
7 4 4/25
Note that the sum of the count must be equal to total number of values.
The above histogram shows frequency of gray level values for an 8 bits per pixel image.
Now if we have to calculate its PMF, we will simple look at the count of each bar from vertical axis
and then divide it by total count.
Another important thing to note in the above histogram is that it is not monotonically increasing.
So in order to increase it monotonically, we will calculate its CDF.
What is CDF?
CDF stands for cumulative distributive function. It is a function that calculates the cumulative sum
of all the values that are calculated by PMF. It basically sums the previous one.
How it is calculated?
We will calculate CDF using a histogram. Here how it is done. Consider the histogram shown above
which shows PMF.
Since this histogram is not increasing monotonically, so will make it grow monotonically.
We will simply keep the first value as it is, and then in the 2nd value , we will add the first one and
so on.
And also now, the function is growing monotonically which is necessary condition for histogram
equalization.
Histogram equalization
Histogram equalization is discussed in the next tutorial but a brief introduction of histogram
equalization is given below.
PMF and CDF are both use in histogram equalization as it is described in the beginning of this
tutorial. In the histogram equalization, the first and the second step are PMF and CDF. Since in
histogram equalization, we have to equalize all the pixel values of an image. So PMF helps us
calculating the probability of each pixel value in an image. And CDF gives us the cumulative sum
of these values. Further on, this CDF is multiplied by levels, to find the new pixel intensities, which
are mapped into old values, and your histogram is equalized.