我想在 Matlab 中显示图像的 GLCM。到目前为止,我已经尝试过并且只能获得统计数据。
I = imread('cameraman.tif');
glcm1 = graycomatrix(I);
Stats = graycoprops(glcm1);
它会产生统计数据。
统计 =
Contrast: 0.5006
Correlation: 0.9269
Energy: 0.1636
Homogeneity: 0.8925
我想要的是在这里展示这 4 个 GLCM 的图像。