gpt4 book ai didi

image-processing - Scikit-image 扩展事件轮廓(蛇)

转载 作者:行者123 更新时间:2023-12-03 13:40:22 35 4
gpt4 key购买 nike

我遵循了这个 link 中的示例.然而,轮廓从初始点开始收缩。是否可以做展开的轮廓?我想要像显示的图像那样的东西。左边的图像是它的样子,右边的图像是我想要的样子——向外扩展而不是收缩。红色圆圈为起点,蓝色轮廓为n次迭代后。有没有我可以设置的参数 - 我查看了所有参数,但似乎没有设置参数。另外,当提到“事件轮廓”时,它通常是否假设轮廓收缩?我读了 this paper并认为它既可以收缩也可以膨胀。

img = data.astronaut()
img = rgb2gray(img)

s = np.linspace(0, 2*np.pi, 400)
x = 220 + 100*np.cos(s)
y = 100 + 100*np.sin(s)
init = np.array([x, y]).T

if not new_scipy:
print('You are using an old version of scipy. '
'Active contours is implemented for scipy versions '
'0.14.0 and above.')

if new_scipy:
snake = active_contour(gaussian(img, 3),
init, alpha=0.015, beta=10, gamma=0.001)

fig = plt.figure(figsize=(7, 7))
ax = fig.add_subplot(111)
plt.gray()
ax.imshow(img)
ax.plot(init[:, 0], init[:, 1], '--r', lw=3)
ax.plot(snake[:, 0], snake[:, 1], '-b', lw=3)
ax.set_xticks([]), ax.set_yticks([])
ax.axis([0, img.shape[1], img.shape[0], 0])

enter image description here

最佳答案

您需要的是气球力添加到蛇。
Snake 的算法被定义为最小化 3 个能量 - 连续性、曲率和梯度,对应于 alpha , betagamma在你的代码中。当(曲线上的)点越来越靠近即收缩时,前两个(统称为内能)会最小化。如果它们膨胀,则能量增加,这是蛇算法所不允许的。
但是这个 1987 年提出的初始算法存在一些问题。问题之一是在平坦区域(梯度为零)算法无法收敛并且什么也不做。提出了几种修改来解决这个问题。这里感兴趣的解决方案是 - LD Cohen 在 1989 年提出的 Balloon Force。
气球力引导图像的非信息区域中的轮廓,即图像梯度太小而无法将轮廓推向边界的区域。负值将缩小轮廓,而 正值将扩展等高线 在这些领域。将此设置为零将禁用气球力。
另一个改进是 - Morphological Snakes 在二进制数组上使用形态学运算符(例如膨胀或腐 eclipse ),而不是在浮点数组上求解 PDE,这是事件轮廓的标准方法。这使得 Morphological Snakes 比它们的传统对应物更快并且在数值上更稳定。
Scikit-image 使用以上两个改进的实现是 morphological_geodesic_active_contour .它有一个参数 balloon在没有任何真实的原始图像的情况下,让我们创建一个玩具图像并使用它:

import numpy as np
import matplotlib.pyplot as plt
from skimage.segmentation import morphological_geodesic_active_contour, inverse_gaussian_gradient
from skimage.color import rgb2gray
from skimage.util import img_as_float
from PIL import Image, ImageDraw

im = Image.new('RGB', (250, 250), (128, 128, 128))
draw = ImageDraw.Draw(im)
draw.polygon(((50, 200), (200, 150), (150, 50)), fill=(255, 255, 0), outline=(0, 0, 0))
im = np.array(im)
im = rgb2gray(im)
im = img_as_float(im)
plt.imshow(im, cmap='gray')
这给了我们下面的图片
enter image description here
现在让我们创建一个函数来帮助我们存储迭代:
def store_evolution_in(lst):
"""Returns a callback function to store the evolution of the level sets in
the given list.
"""

def _store(x):
lst.append(np.copy(x))

return _store
该方法需要对图像进行预处理以突出轮廓。这可以使用函数 inverse_gaussian_gradient 来完成。 ,尽管用户可能想要定义他们自己的版本。 MorphGAC 分割的质量在很大程度上取决于这个预处理步骤。
gimage = inverse_gaussian_gradient(im)
下面我们 定义我们的起点 - 一个正方形 .
init_ls = np.zeros(im.shape, dtype=np.int8)
init_ls[120:-100, 120:-100] = 1
列出用于绘制演化的中间结果
evolution = []
callback = store_evolution_in(evolution)
现在,带有气球膨胀的 morphological_geodesic_active_contour 所需的魔线如下:
ls = morphological_geodesic_active_contour(gimage, 50, init_ls, 
smoothing=1, balloon=1,
threshold=0.7,
iter_callback=callback)
现在让我们绘制结果:
fig, axes = plt.subplots(1, 2, figsize=(8, 8))
ax = axes.flatten()

ax[0].imshow(im, cmap="gray")
ax[0].set_axis_off()
ax[0].contour(ls, [0.5], colors='b')
ax[0].set_title("Morphological GAC segmentation", fontsize=12)

ax[1].imshow(ls, cmap="gray")
ax[1].set_axis_off()
contour = ax[1].contour(evolution[0], [0.5], colors='r')
contour.collections[0].set_label("Starting Contour")
contour = ax[1].contour(evolution[5], [0.5], colors='g')
contour.collections[0].set_label("Iteration 5")
contour = ax[1].contour(evolution[-1], [0.5], colors='b')
contour.collections[0].set_label("Last Iteration")
ax[1].legend(loc="upper right")
title = "Morphological GAC Curve evolution"
ax[1].set_title(title, fontsize=12)

plt.show()
enter image description here
红色方块是我们的起点(初始轮廓),蓝色轮廓来自最终迭代。

关于image-processing - Scikit-image 扩展事件轮廓(蛇),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45736132/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com