资源简介
graph cut matlab 代码 可以运行 能直观看到结果。下载觉不会后悔的。 对理解和使用matlab 函数都有帮助

代码片段和文件信息
% [labels strengths] = growcut(img labels)
%
% GrowCut algorithm
% from “GrowCut“ - Interactive Multi-Label N-D Image Segmentation
% By Cellular Autonoma
% by Vladimir Vezhnevets and Vadim Konouchine
%
% usage: [labels strengths] = growcutmex(image labels)
% image can be RGB or grayscale
% labels has values: -1 (bg) 1 (fg) or 0 (undef.)
%
% resulting labels will be either 0 (bg) or 1 (fg)
% resulting strengths will be between 0 and 1
%
% coded by: Shawn Lankton (www.shawnlankton.com)
function [l s] = growcut(img labels)
%-- make sure image is in the double format
img = double(img);
%-- enforce that foreground and background labels exist
if(numel(unique(labels))~=3)
error(‘labels must be comprised of -1 0 1‘);
end
%-- enforce that image and labels are the same size
si = size(img);
sl = size(labels);
if(~all(sl(1:2)==si(1:2)))
error(‘labels and image must be the same size‘);
end
%-- automatically compile mex file if not already done
if(exist(‘growcutmex‘‘file‘)~=3)
mex growcutmex.cpp;
end
%-- run the c++ growcut algorithm
[l s] = growcutmex(imglabels);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2008-07-16 14:51 growcut\
文件 1179 2008-07-16 14:51 growcut\growcut.m
文件 484 2008-07-16 14:50 growcut\growcut_test.m
文件 4760 2008-07-16 13:38 growcut\growcutmex.cpp
文件 7353 2008-07-16 14:02 growcut\growcutmex.mexglx
文件 13100 2008-07-16 13:38 growcut\growcutmex.mexmaci
文件 20480 2008-07-16 14:22 growcut\growcutmex.mexw32
文件 715 2008-07-16 14:39 growcut\labels.png
文件 82155 2008-07-16 14:36 growcut\lotus.png
- 上一篇:验证水印鲁棒性的攻击程序
- 下一篇:基于Matlab语言的蒙特卡洛仿真入门教程
相关资源
- matlab_OFDM调制解调(来自剑桥大学)
- Matlab路面裂缝识别69319
- 高灵敏度GPS接收机MATLAB仿真,附捕获
- 基于MATLAB的质点弹道计算与外弹道优
- 阵列天线的matlab仿真
- MATLAB 经典程序源代码大全
- MATLAB小波软阈值去噪代码33473
- 天线阵的波束形成在MATLAB仿真程序及
- 非线性SVM算法-matlab实现
- 《MATLAB 智能算法超级学习手册》-程序
- 组合导航matlab程序
- 读取txt文件内容matlab代码实现
- Matlab实现基于相关的模板匹配程序
- matlab优化工具箱讲解
- 基于MATLAB的快速傅里叶变换
- 光纤传输中的分布傅立叶算法matlab实
- 基于matlab的图像处理源程序
- matlab 椭圆拟合程序
- 算术编码解码matlab源代码
- optical_flow 光流法 matlab 实现程序
- 引导图像滤波器 Matlab实现
- 分形几何中一些经典图形的Matlab画法
- OFDM系统MATLAB仿真代码
- SVM工具箱(matlab中运行)
- 图像小波变换MatLab源代码
- LU分解的MATLAB实现
- 冈萨雷斯数字图像处理matlab版(第三
- 替代数据法的matlab程序
- 用matlab实现的多站定位系统性能仿真
- 通过不同方法进行粗糙集属性约简m
评论
共有 条评论