在matlab图像处理中太有用了,regionprops用来度量图像区域属性的函数。

在matlab图像处理中太有用了,regionprops用来度量图像区域属性的函数。

函数:regionprops。顾名思义:它的用途是get the properties of region,即用来度量图像区域属性的函数。
语法    STATS = regionprops(L,properties)

        %bw=rgb2gray(bw);L必须来自二维图像(如灰度图像)
        %L = bwlabel(bw);语法中的L
        %s  = regionprops(L, 'centroid'); centroid为其中可以引用的属性
描述   

        测量标注矩阵L中每一个标注区域的一系列属性。L中不同的正整数元素对应不同的区域,例如:L中等于整数1的元素对应区域1;L中等于整数2的元素对应区域2;以此类推。返

你可能感兴趣的:(Matlab)