• 大小: 992B
    文件类型: .py
    金币: 1
    下载: 0 次
    发布日期: 2021-06-02
  • 语言: Python
  • 标签: cv  snake  

资源简介

Chan-Vese分割,python,代码,

资源截图

代码片段和文件信息

import numpy as np
import matplotlib.pyplot as plt
import cv2 as cv
from skimage.segmentation import chan_vese

image = cv.imread(‘H:/MRI1/12.jpg‘0)
image = np.float32(image)

# Feel free to play around with the parameters to see how they impact the result
cv = chan_vese(image mu=0.25 lambda1=1 lambda2=1 tol=1e-3 max_iter=100
               dt=0.5 init_level_set=“checkerboard“ extended_output=True)

fig axes = plt.subplots(2 2 figsize=(8 8))
ax = axes.flatten()

a

评论

共有 条评论