私は大きなnumpy配列を持っており、scipyで接続されたコンポーネントのラベル付けでラベル付けしました。今、この配列のサブセットを作成したいと思います。ここでは、サイズが最大または最小のラベルのみが残されています。もちろん、両方の極値が数回発生する可能性があります。
import numpy
from scipy import ndimage
....
# Loaded in my image file here. To big to paste
....
s = ndimage.generate_binary_structure(2,2) # iterate structure
labeled_array, numpatches = ndimage.label(array,s) # labeling
# get the area (nr. of pixels) of each labeled patch
sizes = ndimage.sum(array,labeled_array,range(1,numpatches+1))
# To get the indices of all the min/max patches. Is this the correct label id?
map = numpy.where(sizes==sizes.max())
mip = numpy.where(sizes==sizes.min())
# This here doesn't work! Now i want to create a copy of the array and fill only those cells
# inside the largest, respecitively the smallest labeled patches with values
feature = numpy.zeros_like(array, dtype=int)
feature[labeled_array == map] = 1
誰かが先に進む方法のヒントを教えてくれますか?