1

バイナリ イメージの連結成分の統計を計算したいと考えています。matlabには

形状測定

    'Area'              'EulerNumber'       'Orientation'               
    'BoundingBox'       'Extent'            'Perimeter'          
    'Centroid'          'Extrema'           'PixelIdxList' 
    'ConvexArea'        'FilledArea'        'PixelList'
    'ConvexHull'        'FilledImage'       'Solidity' 
    'ConvexImage'       'Image'             'SubarrayIdx'            
    'Eccentricity'      'MajorAxisLength' 
    'EquivDiameter'     'MinorAxisLength' 

Pythonに相当するものはありますか?

ありがとう

4

3 に答える 3

2

同様の質問に答えたところです。scikit-imageの関数を使用してregionprops、Python で CC プロパティを取得します。

from scipy.ndimage.measurements import label
from skimage.measure import regionprops
label = label(img)
props = regionprops(label)
# get centroid of second object
centroid = props[1].centroid
# get eccentricity of first object
ecc = props[0].eccentricity

によって出力される形状測定値regionpropsには、上記の質問にリストされているすべての機能が含まれます。'PixelIdxList'Python で同等のものは、coordsによって出力されるプロパティregionpropsです。

于 2016-08-01T19:12:28.700 に答える