是否有3D版本的scikits图像测量regionprops?

时间:2015-05-26 22:15:02

标签: python measure scikits

我有一个三维二进制图像,我正在努力确定两点集群功能。执行此操作的第一步是定义图像中的所有连接区域。我用skimage成功地做到了:

from skimage.measure import label
from skimage.morphology import remove_small_objects
from skimage.measure import label
from skimage.morphology import remove_small_objects
min = 64
label_file = label(newim_int, return_num=True, connectivity=2)
image_clean = remove_small_objects(label_file[0], min_size=min,connectivity=2, in_place=True)
label_file = label(image_clean, return_num=True, connectivity=2)

在min =和label_file =之间的文件等中缺少一堆东西 我现在想知道标记区域的大小分布 这里。不幸的是,skimage.measure.regionprops告诉我它只适用于2D图像。还有另一种方法吗? 感谢

1 个答案:

答案 0 :(得分:0)

regionprops has already started being expanded to include 3d images;目前,一些属性返回NotImplementedError

幸运的是,area已经适用于3d,因此您应该可以使用此属性。