0

在我的 GUI 中,我使用此 matlab 代码将值存储在 excel 表中。此代码正在计算 glcm 六个特征。

function [Contrast,cor,ener,homo,Var,Entropy] = glcm_feature_extraction(I1)

Contrast = graycoprops(graycomatrix(rgb2gray(I1)),'Contrast')  
cor= graycoprops(graycomatrix(rgb2gray(I1)), 'Correlation')  
ener = graycoprops(graycomatrix(rgb2gray(I1)), 'Energy')  
homo = graycoprops(graycomatrix(rgb2gray(I1)), 'Homogeneity')  
img = double(I1);  
Var = var((img(:)))  
Entropy=entropy(I1)

这里假设我在计算后得到这些值:

[0.603606103 : 0.785092239 : 0.271728411 : 0.855429408 :1889.578963 : 7.178149206]

但我只需要大约值,例如:

[0.6 : 0.7 : .2 ....]

如何修改此代码以获得此结果?

4

1 回答 1

0

例如,让我们考虑对比度=0.603606103

并且您想制作大约为 0.6,然后使用以下内容:

sprintf('%.1f',Contrast);

这应该会给你准确的结果 Contrast=0.6

同样对所有剩余的 5 个变量执行此操作。

于 2015-03-30T12:18:51.713 回答