所以我从复合样本的显微图像中得到了这个特征。基本上我所做的是我有一个数组A,它包含从-90到+90度的角度Phi的值。然后我用contourf来得到这个情节:
现在我想用一个数字标记每个区域,并得到一个表格,其中每个区域都有一个像素区域。我试图以这种方式使用函数regionprops: A是我的数据数组
angs = -90:10:90;
for i = 1:numel(angs)-1
BW = A>=angs(i) & A<angs(i+1);
R{i} = regionprops(BW, 'Area');
end
我得到了这样的解决方案:
R =
Columns 1 through 3
[32x1 struct] [450x1 struct] [1110x1 struct]
Columns 4 through 6
[1978x1 struct] [2778x1 struct] [3392x1 struct]
Columns 7 through 9
[5249x1 struct] [8215x1 struct] [15711x1 struct]
Columns 10 through 12
[12019x1 struct] [5335x1 struct] [2643x1 struct]
Columns 13 through 15
[1804x1 struct] [1018x1 struct] [670x1 struct]
Columns 16 through 18
[579x1 struct] [344x1 struct] [50x1 struct]
但是我想要显示一张桌子,我想知道图片上哪个区域。 你知道怎么做吗?