How to get the gray level co-occurrence matrix feature which is energy, entropy and contrast of the image using GUI?
4 views (last 30 days)
Show older comments
Muhammad Harith Ramli
on 8 Dec 2016
Answered: Image Analyst
on 8 Dec 2016
I want to create the GUI that can extract the gray gray level co-occurrence matrix feature which is energy, entropy and contrast of the image(bitmap). How to get that feature?
0 Comments
Accepted Answer
Jiro Doke
on 8 Dec 2016
7 Comments
Jiro Doke
on 8 Dec 2016
Take a look at the stats variable you get with graycoprops. Both the Contrast and Energy are two-element vectors, because you created a graycomatrix for two sets of offsets. So you have two contrast levels and two energy levels. Perhaps change the sprintf line to
message = sprintf('The min gray level = %d.\nThe max gray level = %d.\nThe mean gray level = %g.\nThe contrast gray level = [%g %g].\nThe energy gray level = [%g %g].', minGL, maxGL,meanGL,stats.Contrast,stats.Energy);
More Answers (1)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!