How to get the gray level co-occurrence matrix feature which is energy, entropy and contrast of the image using GUI?
2 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
採用された回答
Jiro Doke
2016 年 12 月 8 日
7 件のコメント
Jiro Doke
2016 年 12 月 8 日
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);
その他の回答 (1 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!