所以我有这张由复合样品的显微图像制成的照片。基本上我所做的是我有一个数组 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]
但我想显示一个表格,我想知道图片上的哪个区域。你知道怎么做吗?