资源简介
基于matlab的界面,能够实现对图像的边缘检测,内含有测试图片
代码片段和文件信息
function varargout = guixuexi1(varargin)
% GUIXUEXI1 MATLAB code for guixuexi1.fig
% GUIXUEXI1 by itself creates a new GUIXUEXI1 or raises the existing
% singleton*.
%
% H = GUIXUEXI1 returns the handle to a new GUIXUEXI1 or the handle to
% the existing singleton*.
%
% GUIXUEXI1(‘CALLBACK‘hobjecteventDatahandles...) calls the local
% function named CALLBACK in GUIXUEXI1.M with the given input arguments.
%
% GUIXUEXI1(‘Property‘‘Value‘...) creates a new GUIXUEXI1 or raises the
% existing singleton*. Starting from the left property value pairs are
% applied to the GUI before guixuexi1_OpeningFcn gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to guixuexi1_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 guixuexi1
% Last Modified by GUIDE v2.5 11-Jan-2016 15:29:16
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct(‘gui_Name‘ mfilename ...
‘gui_Singleton‘ gui_Singleton ...
‘gui_OpeningFcn‘ @guixuexi1_OpeningFcn ...
‘gui_OutputFcn‘ @guixuexi1_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 guixuexi1 is made visible.
function guixuexi1_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 guixuexi1 (see VARARGIN)
% Choose default command line output for guixuexi1
handles.output = hobject;
%初始化GUI
a = ones(256256);
axes(handles.axes1);
imshow(a);
axes(handles.axes2);
imshow(a);
axes(handles.axes3);
imshow(a);
% Update handles structure
guidata(hobject handles);%更新窗口
% UIWAIT makes guixuexi1 wait for user response (see UIRESUME)
% uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line.
function varargout = guixuexi1_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;
% --- Executes on button press in clear.
functio
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 9974 2016-01-11 16:27 guixuexi1.fig
文件 8288 2016-01-11 16:21 1.jpg
文件 14221 2016-01-11 16:22 1_副本.jpg
文件 8469 2016-01-11 16:41 guixuexi1.m
----------- --------- ---------- ----- ----
40952 4
相关资源
- Kalman 滤波器理论与应用——基于Mat
- matlab图像特征提取
- 模式识别与智能计算杨淑莹MATLAB版源
- DOA 估计 music算法matlab
- MATLAB上实现不同窗口的中值滤波
- 自适应谱熵端点检测matlab实现
- MATLAB 常微分方程
- 全息matlab算法
- hough变换提取直线(Matlab实现)
- 基于matlab的直接序列扩频仿真
- 基于MATLAB的QPSK在瑞利、高斯和莱斯信
- 矩阵位移法_MATLAB程序
- MATLAB生成DEM 代码3
- 基于Matlab的3DMIMO信道空间相关性仿真
- 自适应卡尔曼滤波,MATLAB
- 超全图论matlab程序
- matlab视频处理代码
- 位移、速度、加速度信号互转
- Matlab 雷克子波和傅里叶变换Ricker Wa
- Matlab插补法
- JPEG图像压缩编码及其MATLAB仿真实现
- flooding算法的matlab仿真代码
- 聚类评价指标 MATLAB 实现
- MIMO-OFDM无线通信matlab代码
- DCT数字水印实现
- 实现图像中道路区域的分割与提取
- 自适应matlab程序
- 基于区域生长法的图像分割matlab程序
- dea的matlab程序
- snake和GVFsnake主动轮廓Matlab程序
评论
共有 条评论