资源简介

新发表论文Graph cuts based active contour model with selective local or global segmentation 附源码,基于图割的主动轮廓模型,用于有选择的局部分割或全局分割,欢迎下载!

资源截图

代码片段和文件信息


% This Matlab file demomstrates a segmentation method in Qiang Zheng et al‘s paper
%    “Graph Cuts based Active Contour Model with Selective Local or Global Segmentation“
%    IET Electronics Letters vol. 48 (9) pp.490-491 26th April 2012.
% Author: Qiang Zheng all rights reserved
% E-mail: weihaizhengqiang@163.com
% URL:  %%%%%%%%%%%%%%%

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

clc; clear all; close all; 

Img0 = imread(‘1.bmp‘);
Img0 = double(Img0(::1));

[heightwidth] = size(Img0);
N = height*width;

E = edges4connected(heightwidth);
V0 = 1./(1 + abs(Img0(E(:1)) - Img0(E(:2))).^2 + eps);

iterNum = 5; % 迭代次数
figure(1);

for ID=1:6
    
    [nrowncol] = size(Img0);
    BW_InitialCurve = zeros(si

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      69366  2006-11-12 20:57  Graph cuts based active contour model with selective local or global segmentatio\1.bmp

     文件      20520  2012-04-17 16:53  Graph cuts based active contour model with selective local or global segmentatio\Demo.asv

     文件       5384  2012-08-03 16:58  Graph cuts based active contour model with selective local or global segmentatio\Demo.m

     文件        765  2008-09-15 15:35  Graph cuts based active contour model with selective local or global segmentatio\edges4connected.m

     文件       1026  2012-04-17 16:43  Graph cuts based active contour model with selective local or global segmentatio\Evolution_Global.asv

     文件       1138  2012-04-17 16:58  Graph cuts based active contour model with selective local or global segmentatio\Evolution_Global.m

     文件       1127  2012-04-17 16:58  Graph cuts based active contour model with selective local or global segmentatio\Evolution_Local_Annular.asv

     文件       1182  2012-04-17 16:58  Graph cuts based active contour model with selective local or global segmentatio\Evolution_Local_Annular.m

     文件       1171  2012-04-17 17:00  Graph cuts based active contour model with selective local or global segmentatio\Evolution_Local_Non_Annular.m

     文件     377164  2012-05-07 10:15  Graph cuts based active contour model with selective local or global segmentatio\Graph cuts based active contour model with selective local or global segmentation.pdf

     文件       1458  2008-09-15 15:35  Graph cuts based active contour model with selective local or global segmentatio\maxflow.m

     文件      24576  2011-12-03 21:22  Graph cuts based active contour model with selective local or global segmentatio\maxflowmex.mexw32

     文件        245  2008-09-02 17:10  Graph cuts based active contour model with selective local or global segmentatio\Source Code for maxflow\make.m

     文件       7466  2006-11-07 18:56  Graph cuts based active contour model with selective local or global segmentatio\Source Code for maxflow\maxflow-v3.0\block.h

     文件       1166  2006-11-07 21:01  Graph cuts based active contour model with selective local or global segmentatio\Source Code for maxflow\maxflow-v3.0\CHANGES.TXT

     文件       3031  2008-01-03 22:58  Graph cuts based active contour model with selective local or global segmentatio\Source Code for maxflow\maxflow-v3.0\graph.cpp

     文件      17825  2011-12-03 21:21  Graph cuts based active contour model with selective local or global segmentatio\Source Code for maxflow\maxflow-v3.0\graph.h

     文件        410  2006-06-13 19:42  Graph cuts based active contour model with selective local or global segmentatio\Source Code for maxflow\maxflow-v3.0\instances.inc

     文件      17657  2008-01-03 23:22  Graph cuts based active contour model with selective local or global segmentatio\Source Code for maxflow\maxflow-v3.0\maxflow.cpp

     文件       4430  2006-11-06 18:39  Graph cuts based active contour model with selective local or global segmentatio\Source Code for maxflow\maxflow-v3.0\README.TXT

     文件       4679  2008-09-15 15:35  Graph cuts based active contour model with selective local or global segmentatio\Source Code for maxflow\maxflowmex.cpp

     目录          0  2012-08-03 16:59  Graph cuts based active contour model with selective local or global segmentatio\Source Code for maxflow\maxflow-v3.0

     目录          0  2012-08-03 16:59  Graph cuts based active contour model with selective local or global segmentatio\Source Code for maxflow

     目录          0  2012-08-03 17:05  Graph cuts based active contour model with selective local or global segmentatio

----------- ---------  ---------- -----  ----

               561786                    24


评论

共有 条评论