资源简介
是个GUI界面。进行了中值滤波,范围默认为3*3,可调。利用类间方差阈值算法实现图像的分割处理,利用形态学中的腐蚀、膨胀处理进行处理结果修正。注意,本程序用的滤波、分割、形态学处理等都是调用的matlab自带的函数。

代码片段和文件信息
function varargout = experiment3(varargin)
% EXPERIMENT3 MATLAB code for experiment3.fig
% EXPERIMENT3 by itself creates a new EXPERIMENT3 or raises the existing
% singleton*.
%
% H = EXPERIMENT3 returns the handle to a new EXPERIMENT3 or the handle to
% the existing singleton*.
%
% EXPERIMENT3(‘CALLBACK‘hobjecteventDatahandles...) calls the local
% function named CALLBACK in EXPERIMENT3.M with the given input arguments.
%
% EXPERIMENT3(‘Property‘‘Value‘...) creates a new EXPERIMENT3 or raises the
% existing singleton*. Starting from the left property value pairs are
% applied to the GUI before experiment3_OpeningFcn gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to experiment3_OpeningFcn via varargin.
%
% *See GUI Options on GUIDE‘s Tools menu. Choose “GUI allows only one
% instance to run (singleton)“.
%
% See also: GUIDE GUIDATA GUIHANDLES
% Edit the above text to modify the response to help experiment3
% Last Modified by GUIDE v2.5 31-May-2018 16:55:57
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct(‘gui_Name‘ mfilename ...
‘gui_Singleton‘ gui_Singleton ...
‘gui_OpeningFcn‘ @experiment3_OpeningFcn ...
‘gui_OutputFcn‘ @experiment3_OutputFcn ...
‘gui_LayoutFcn‘ [] ...
‘gui_Callback‘ []);
if nargin && ischar(varargin{1})
gui_State.gui_Callback = str2func(varargin{1});
end
if nargout
[varargout{1:nargout}] = gui_mainfcn(gui_State varargin{:});
else
gui_mainfcn(gui_State varargin{:});
end
% End initialization code - DO NOT EDIT
% --- Executes just before experiment3 is made visible.
function experiment3_OpeningFcn(hobject eventdata handles varargin)
% This function has no output args see OutputFcn.
% hobject handle to figure
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% varargin command line arguments to experiment3 (see VARARGIN)
% Choose default command line output for experiment3
handles.output = hobject;
% Update handles structure
guidata(hobject handles);
% UIWAIT makes experiment3 wait for user response (see UIRESUME)
% uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line.
function varargout = experiment3_OutputFcn(hobject eventdata handles)
% varargout cell array for returning output args (see VARARGOUT);
% hobject handle to figure
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Get default command line output from handles structure
varargout{1} = handles.output;
function edit1_Callback(hobject eventdata handles)
% hobject handle to edit1 (see GCBO)
% eventdata reserved - to be defined
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 121212 2018-05-31 16:55 tuxiangfenge\experiment3.fig
文件 8343 2018-06-03 23:36 tuxiangfenge\experiment3.m
文件 196662 2016-05-10 09:47 tuxiangfenge\shiyan3.bmp
目录 0 2018-06-03 23:36 tuxiangfenge\
- 上一篇:AM调制解调matlab实验代码加噪声
- 下一篇:现代控制系统matlab程序
相关资源
- 基于区域生长的图像分割MATLAB
- 细胞图像分割matlab代码
- Matlab图像分割边缘提取算法
- 基于lab空间的图像分割
- MATLAB大脑腔体图像分割
- LAB空间分别提取红色、绿色、紫色、
- 图像分割matlab
- 模糊聚类图像分割FCM/FLICM等
- ASM二维图像分割MATLAB代码
- matlab 静态图像分割
- 基于信息熵方法的多阈值图像分割算
- KFCM与FCM进行脑电图分割
- 纹理图像分割Matlab源代码 PDF PPT
- 基于变分水平集的图像分割
- MATLAB简介+图像轮廓线提取+图像分割技
- 遗传算法图像分割matlab+源代码
- 用matlab写的图像分割的代码
- MRI图像分割
- 基于颜色的图像分割算法MATLAB代码
- 一种效果极好的交互式图像分割算法
- GVFSnake(matlab)边缘检测和图像分割
- LBF和LDF模型的matlab程序,用于图像分
- 图像分割分形算法
- 基于形态学的图像分割算法研究
- 基于Matlab实现的图像分割的常用算法
- 图像分割源代码(Matlab)
- 基于FCN的侧扫声呐图像分割matlab代码
- MATLAB 彩色图像分割
- 图像分割程序matlab版
- Chan-Vese算法的MATLAB代码
评论
共有 条评论