• 大小: 1KB
    文件类型: .m
    金币: 1
    下载: 0 次
    发布日期: 2021-01-06
  • 语言: Matlab
  • 标签: matlab  图像分割  

资源简介

matlab图像分割程序,,基于svm的图像分割,类似抠图显示,主要根据颜色对比明显实现,另外运行此程序可能还需要下载svmlib,然后set path... 资源包里还包含图片,效果演示文档,源代码极其注释。

资源截图

代码片段和文件信息

%  script file: plotsinc.m
%
%  Purpose: 
%    This program illustrates the use of handle graphics 
%    commands by creating a plot of sinc(x) from -3*pi to
%    3*pi and modifying the characteristics of the figure
%    axes and line using the “set“ function.
%
%  Record of revisions:
%      Date       Programmer          Description of change
%      ====       ==========          =====================
%    11/22/97    S. J. Chapman        Original code 
%
% Define variables:
%   Hndl         -- Handle of line
%   x            -- Independent variable
%   y            -- sinc(x)

% Calculate sinc(x)
x = -3*pi:pi/10:3*pi;
y = sin(x) ./ x;

% Find the zero value and fix it up.  The zero is
% located in the middle of the x array.
index = fix(length(y)/2) + 1;
y(ind

评论

共有 条评论