Entropy of an image

조회 수: 22 (최근 30일)
Paolo Piazza
Paolo Piazza 2020년 6월 26일
댓글: ammu v 2021년 7월 26일
Hi everyone, I am new to MATLAB and I am trying to calculate and analyze the entropy of a set of images. Sometimes however, I need to crop only a certain area of a picture in order to calculate the entropy of that specific area (see attached file). The question is: does the size of an image bias the entropy value? If yes, is it possible to solve this problem?
thanks in advance
PS: I wanted to calculate the entropy of RGB pictures but I never found the code for that

답변 (2개)

Madhav Thakker
Madhav Thakker 2020년 8월 21일
Hi,
Entropy for a grayscale image is calculated as the sum(p.*log2(p)), where p contains the normalized histogram counts returned from imhist. If the resized image does not change the histogram of the original image, there shouldn’t be any change in the entropy value as well.
There is no inbuilt function to calculate entropy of RGB Images. You can refer this answer for some ways to calculate entropy of colored images. https://in.mathworks.com/matlabcentral/answers/261930-how-to-calculate-entropy-of-colored-image
Entropy documentation for better understanding - https://in.mathworks.com/help/images/ref/entropy.html
Hope this helps.
  댓글 수: 1
ammu v
ammu v 2021년 7월 25일
편집: ammu v 2021년 7월 25일
this answer give a full picture.. for eg:we have to find tumor entropy, its a subject dependent size.will there be nfluence of size on entropy?

댓글을 달려면 로그인하십시오.


Image Analyst
Image Analyst 2021년 7월 25일
@ammu v, to compute the entropy of just a region of interest in an image you first have to define a binary image (mask) that is the region of interest, for example the tumor. Then you can use entropyfilt() on the whole image.
entropyImage = entropyfilt(grayImage);
Then get the mean in the masked region
meanEntropy = mean(entropyImage(mask))
  댓글 수: 1
ammu v
ammu v 2021년 7월 26일
Thnakyou for the answer. If i have an iamge of size 120*120, and another of size 150*150, will there be infulence of size in the entropy calculation

댓글을 달려면 로그인하십시오.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by