资源简介
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语言的蒙特卡洛仿真入门教
- matlab code for water-filling using binary sea
- 用matlab实现音频水印的嵌入与提取
- matlab实现阻抗圆图源代码
- 精通MATLAB最优化计算源代码
- 自适应卡尔曼滤波器的matlab实现
- hmm算法matlab实现和
- 思典-粒子群优化Matlab工具箱
- 实现2DPSK功能的matlab程序
- 最优潮流Matlab程序
- matlab最小二乘法滤波
- DSP计算机作业 自适应噪声抵消LMS算法
- matlab中实现雷达信号处理
- 马氏距离判别法matlab
- QAM调制的matlab实现
- SVPWM驱动异步电机matlab2008a
- matlab_neat源程序
- 人脸分割matlab
- 图像稀疏表示matlab193095
- matlab BP神经网络的动量梯度下降算法
- 隐马尔科夫模型程序范例
- DES的MATLAB实现
- 免疫遗传算法matlab工具箱.rar
- 基于matlab的0-1背包程序贪婪法,带输
- 克里金及协同克里金插值__matlab代码
- 国外资源 基于PCA的人脸识别matlab代码
- mimo matlab
- 四阶Runge-Kutta法解常微分方程组实验报
- 自编Matlab函数实现图像缩放
- RBM玻尔兹曼机的matlab简单演示程序
评论
共有 条评论