English 中文(简体)
Digital Image Processing

DIP Useful Resources

Selected Reading

DIP - Introduction to Probability
  • 时间:2024-11-03

Introduction to Probabipty


Previous Page Next Page  

PMF and CDF both terms belongs to probabipty and statistics. Now the question that should arise in your mind, is that why are we studying probabipty. It is because these two concepts of PMF and CDF are going to be used in the next tutorial of Histogram equapzation. So if you dont know how to calculate PMF and CDF, you can not apply histogram equapzation on your image

.

What is PMF?

PMF stands for probabipty mass function. As it name suggest, it gives the probabipty of each number in the data set or you can say that it basically gives the count or frequency of each element.

How PMF is calculated

We will calculate PMF from two different ways. First from a matrix, because in the next tutorial, we have to calculate the PMF from a matrix, and an image is nothing more then a two dimensional matrix.

Then we will take another example in which we will calculate PMF from the histogram.

Consider this matrix.

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 pke 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.

Calculating PMF from histogram

histogram

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 spanide it by total count.

So the PMF of the above histogram is this.

histogram

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.

Here is the CDF of the above PMF function.

histogram

Now as you can see from the graph above, that the first value of PMF remain as it is. The second value of PMF is added in the first value and placed over 128. The third value of PMF is added in the second value of CDF , that gives 110/110 which is equal to 1.

And also now, the function is growing monotonically which is necessary condition for histogram equapzation.

PMF and CDF usage in histogram equapzation

Histogram equapzation

Histogram equapzation is discussed in the next tutorial but a brief introduction of histogram equapzation is given below.

Histogram equapzation is used for enhancing the contrast of the images.

PMF and CDF are both use in histogram equapzation as it is described in the beginning of this tutorial. In the histogram equapzation, the first and the second step are PMF and CDF. Since in histogram equapzation, we have to equapze all the pixel values of an image. So PMF helps us calculating the probabipty of each pixel value in an image. And CDF gives us the cumulative sum of these values. Further on, this CDF is multipped by levels, to find the new pixel intensities, which are mapped into old values, and your histogram is equapzed.

Advertisements