资源简介
MATLAB GUI 多界面
自己编写的图像处理软件,MATLAB GUI 编程实现,内容简单易懂。主要用来实现多界面调用,进度条等功能的实现
代码片段和文件信息
function varargout = openjpg(varargin)
% OPENJPG M-file for openjpg.fig
% OPENJPG by itself creates a new OPENJPG or raises the existing
% singleton*.
%
% H = OPENJPG returns the handle to a new OPENJPG or the handle to
% the existing singleton*.
%
% OPENJPG(‘CALLBACK‘hobjecteventDatahandles...) calls the local
% function named CALLBACK in OPENJPG.M with the given input arguments.
%
% OPENJPG(‘Property‘‘Value‘...) creates a new OPENJPG or raises the
% existing singleton*. Starting from the left property value pairs are
% applied to the GUI before openjpg_OpeningFcn gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to openjpg_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 openjpg
% Last Modified by GUIDE v2.5 20-Oct-2010 16:35:20
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct(‘gui_Name‘ mfilename ...
‘gui_Singleton‘ gui_Singleton ...
‘gui_OpeningFcn‘ @openjpg_OpeningFcn ...
‘gui_OutputFcn‘ @openjpg_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 openjpg is made visible.
function openjpg_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 openjpg (see VARARGIN)
% Choose default command line output for openjpg
handles.output = hobject;
% Update handles structure
guidata(hobject handles);
% UIWAIT makes openjpg wait for user response (see UIRESUME)
% uiwait(handles.figure1);
setappdata(handles.figure1 ‘img‘ 0); %利用对象来存取变量(控件之间对数据的共享)(传递打开的图像)
setappdata(handles.figure1 ‘img2‘ 0); %利用对象来存取变量(控件之间对数据的共享)(传递打开的处理后图像)
set(handles.slider1‘Value‘0.2);
set(handles.text2‘String‘‘灰度阈值选取:‘);
set(handles.axes1 ‘Box‘ ‘on‘);
set(handles.axes2 ‘Box‘ ‘on‘);
set(handles.axes3 ‘Box‘ ‘on‘);
set(handles.axes1‘xminortick‘‘off‘);
set(handles.axes1‘yminortick‘‘off‘);
set(handles.checkbox1‘Value‘0);
set(handles.checkbox2‘Value‘1);
set(handles.edit2‘Position‘[9.8 6.615 0.1 2]);
set(handles.edit1‘Position‘[9.8 6.615 100.2 2]);
set(handles.text6‘String‘‘处理程序尚未运行‘);
s
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 6604 2010-10-20 15:47 自己练习\1.jpg
文件 1620054 2010-09-27 16:35 自己练习\123.bmp
文件 16015 2010-10-20 17:30 自己练习\openjpg.fig
文件 16463 2010-10-20 20:33 自己练习\openjpg.m
文件 5779 2010-10-20 20:30 自己练习\openjpg_2.fig
文件 8502 2010-10-20 20:26 自己练习\openjpg_2.m
目录 0 2010-10-22 09:14 自己练习
----------- --------- ---------- ----- ----
1673417 7
- 上一篇:小波图像融合matlab实现源代码
- 下一篇:QDPSK的调制与解调的M文件
相关资源
- 小波图像融合matlab实现源代码
- 单轮abs控制 matlab仿真实现
- NSGA-II的matlab 仿真程序
- 感兴趣区域提取(ROI)matlab实现
- TDOA_AOA定位的扩展卡尔曼滤波算法MA
- 频域整形法构造1/f噪声
- 大时滞系统的模糊控制MATLAB仿真\\大时
- 能量检测matlab代码
- 将二进小波变换用于图像增强的MATL
- matlab基于遗传算法实现的高效排课系
- matlab中ICP点云匹配算法
- 贝叶斯辨识的matlab程序
- 直接序列扩频的MATLAB仿真,以及对应
- 《数字信号处理matlab版》代码
- matlab车牌图像分割
- 多相滤波数字信道化MATLAB源码
-
用GUI实时更改simuli
nk仿真参数 - 基于RBF神经网络的PID控制仿真代码
- RBF插值算法Matlab代码
- DCT基函数图像_MATLAB版本
- Matlab实现M/M/1排队模型
- A率PCM编码MATLAB程序
- matlab三相桥式整流电路仿真模型
- 偏微分图像处理MATLAB程序
- 图像预处理MATLAB代码包括图像去孔洞
- 信号包络提取
- matlab编写的有关图像识别分类方法的
- 穷举法求解0-1整数规划的matlab程序
- 注水定理的算法和matlab仿真
- K最短路问题MATLAB实现
评论
共有 条评论