SimpleITK中LabelContour介绍_Panda我的故事的博客-CSDN博客

SimpleITK.LabelContour使用

LabelContour函数简介:
只保留labeled image中目标位置的边界轮廓像素值,不在边界上的像素值改变为背景值,输入和输出图中的label是一样的。
输入: labeled image
输出: Labels the pixels on the border of the objects in a labeled image
调用形式:

import simpleITK as sitk border = sitk.LabelContour(image)12

参数介绍:def LabelContour(image1, fullyConnected=False, backgroundValue=0):

fullyConnected: 设置连通分量是通过面邻接还是面+边+点邻接。默认是FullyConnectedOff。(注:默认为Off情况下,对于标记图像中一个像素宽的object,使用FullyConnectedOn。)

(0)

相关推荐