How to find features of an image?
Afficher commentaires plus anciens
How can i find features (Energy, entropy, contrast. correlation homogeneity etc)of an image. I searched in MATLAB Help.
But in that, only equations to calculate these features are given, but no direct commands.
My project is to find level of Diabetic Retinopathy disease using fundus (eye)images. I am done with two steps of my work: Pre-processing of images. Segmentation of images
Now the third step is to find features followed by Classification.
Can anyone help me in this.....
Réponse acceptée
Plus de réponses (1)
VALARMATHY K
le 22 Août 2017
0 votes
you can use this for your calculation
GLCM = [0 1 2 3;1 1 2 3;1 0 2 0;0 0 0 3];
stats = graycoprops(GLCM)
I = imread('cameraman.tif');
GLCM2 = graycomatrix(I,'Offset',[2 0;0 2]);
stats = graycoprops(GLCM2,{'contrast','homogeneity'})
Catégories
En savoir plus sur Biomedical Imaging dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!