本文整理汇总了Python中pipeline.Pipeline.threshold_component_size方法的典型用法代码示例。如果您正苦于以下问题:Python Pipeline.threshold_component_size方法的具体用法?Python Pipeline.threshold_component_size怎么用?Python Pipeline.threshold_component_size使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pipeline.Pipeline
的用法示例。
在下文中一共展示了Pipeline.threshold_component_size方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: find_particle
# 需要导入模块: from pipeline import Pipeline [as 别名]
# 或者: from pipeline.Pipeline import threshold_component_size [as 别名]
def find_particle(filename,show=True,debug=False):
from find_mask import find_mask
hole_mask = find_mask(filename,show=False)
p = Pipeline(downsample=20,filename=filename)
if debug:
p.show()
p.open(window_size=(20,20))
p.crop(factor=15)
p.threshold() #do adaptive thresholding
if debug:
p.show()
p.connected_components_iterative(full=False) #calculate the connected components
p.threshold_component_size()
if debug:
p.show() #show the mask for debugging
p.data = np.max(p.data) - p.data
p.erode(factor=1)
p.erode(factor=1)
if debug:
p.show()
p.subtract(hole_mask)
if debug:
p.show()
p.convex_hull_per_component()
p.mask_original()
p.show() #show the mask for debugging