How to calculate the contrast energy, entropy of a ROI(Region of interest) of an image using GLCM feature extractactions method?

12 vues (au cours des 30 derniers jours)
I need to extract GLCM features like energy entropy contrast among others of the REGION OF INTEREST ONLY excluding the black background,i managed to extract those features for the entire image but i only need them for the region of interest knowing that everything else will be black
% Loop over all GLCMs
for k = 1:nglcm
currentGLCM = glcm(:,:,k);
glcmMean(k) = mean2(currentGLCM);
% For symmetric GLCMs, uX = uY
uX(k) = sum(I.*currentGLCM(sub));
uY(k) = sum(J.*currentGLCM(sub));
sX(k) = sum((I-uX(k)).^2.*currentGLCM(sub));
sY(k) = sum((J-uY(k)).^2.*currentGLCM(sub));
out.contrast(k) = sum(abs(I-J).^2.*currentGLCM(sub)); %OK
out.dissimilarity(k) = sum(abs(I - J).*currentGLCM(sub)); %OK
out.energy(k) = sum(currentGLCM(sub).^2); % OK
out.entropy(k) = -nansum(currentGLCM(sub).*log(currentGLCM(sub))); %OK
out.inverseDifference(k) = sum(currentGLCM(sub)./( 1 + abs(I-J) )); %OK
out.homogeneity(k) = sum(currentGLCM(sub)./( 1 + (I - J).^2)); %OK
  8 commentaires
Ragini Gaikwad
Ragini Gaikwad le 10 Mai 2021
@Image Analystcalculations of ENERGY ENTROPY CORRELATION CONTRAST, mean and variances for these parameters. and also how to reduce the size of bins in histogram? What does it actually mean..these are my questions. Thank you.
Ragini Gaikwad
Ragini Gaikwad le 13 Mai 2021
Guys, please help me on this. I want to take 10 images form my image database, read them, index them, find grey level and histogram. make bin to size 15. calculate feature vector of each image. calulate ED or MSE.
please help me with this.

Connectez-vous pour commenter.

Réponses (3)

Phuong Nguyen
Phuong Nguyen le 3 Avr 2020
Did you solve this problem? I am having the same problem with you and cant get over it. If you done, could you please teach me? Thank you.
  1 commentaire
Binu
Binu le 8 Mai 2020
Force all pixel values outside your region of interest as a 'NaN'. The graycomatrix methods by default ignores any pixel pairs having a 'NaN' value.

Connectez-vous pour commenter.


Image Analyst
Image Analyst le 5 Juin 2017
graycoprops() returns 4 measurements. Will that do?
  1 commentaire
Elias Unk
Elias Unk le 16 Juin 2017
Yes i think it'll do if it'll only extract features from the lesion area not the entire image.

Connectez-vous pour commenter.


Binu
Binu le 4 Août 2017
The graycomatrix function has a '*GrayLimits*' argument where you can specify a two-element vector [low high] which is used for scaling the image and creating NumLevels. Grayscale values less than or equal to low are scaled to 1. You could set that yours to [0.1 1] for your case.
  2 commentaires
Usuma
Usuma le 11 Juil 2019
But in this method black pixels of ROI are neglected. Is there any accurate solution for this? Can anybody help?

Connectez-vous pour commenter.

Community Treasure Hunt

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

Start Hunting!

Translated by