资源简介
图像处理方面的小尝试,完成图像的分割和GUI用户界面设计,大家一起交流~

代码片段和文件信息
function varargout = untitled6(varargin)
% UNtitleD6 MATLAB code for untitled6.fig
% UNtitleD6 by itself creates a new UNtitleD6 or raises the existing
% singleton*.
%
% H = UNtitleD6 returns the handle to a new UNtitleD6 or the handle to
% the existing singleton*.
%
% UNtitleD6(‘CALLBACK‘hobjecteventDatahandles...) calls the local
% function named CALLBACK in UNtitleD6.M with the given input arguments.
%
% UNtitleD6(‘Property‘‘Value‘...) creates a new UNtitleD6 or raises the
% existing singleton*. Starting from the left property value pairs are
% applied to the GUI before untitled6_OpeningFcn gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to untitled6_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 untitled6
% Last Modified by GUIDE v2.5 07-Jun-2015 01:02:20
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct(‘gui_Name‘ mfilename ...
‘gui_Singleton‘ gui_Singleton ...
‘gui_OpeningFcn‘ @untitled6_OpeningFcn ...
‘gui_OutputFcn‘ @untitled6_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 untitled6 is made visible.
function untitled6_OpeningFcn(hobject1 ~ handles1 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 untitled6 (see VARARGIN)
im=imread(‘dog.jpg‘);
axes(handles1.axes1);
guidata(hobject1 handles1);
hold on;%此句看你的MATLAB版本,可以不写
imshow(im);
% Choose default command line output for untitled5
handles1.output = hobject1;
% Update handles structure
guidata(hobject1 handles1);
% UIWAIT makes untitled6 wait for user response (see UIRESUME)
% uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line.
function varargout = untitled6_OutputFcn(~ ~ 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 pushbutton1.
function pushbutton1_Callback(axe
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 6452 2015-06-07 01:23 DIP\unti
文件 3507 2015-06-07 01:23 DIP\unti
目录 0 2015-06-24 13:14 DIP
----------- --------- ---------- ----- ----
9959 3
- 上一篇:89C51FFT蝶形算法
- 下一篇:MTTR MTTF MTBF 图解
相关资源
- 嵌入式图形界面MiniGUI的示例程序9例
- STM32基于rt_thread操作系统的SDHC卡文件
- GUI银行管理系统
- STM32F103RBT6驱动UC1698控制芯片的160160黑
- 冈萨雷斯 数字图像处理 源代码(m文
- qt图像处理
- 血液图像处理—细胞识别
- VC数字图像处理课程设计
- 图像处理作业C 源代码
- System Design Interview - An Insider’s Guide
- VCS lab 和 VCS lab guide
- SAR图像处理1
- easygui手册
- Graphics Magic图像处理魔术师,含Delph
- 铝合金方波交流TIG焊熔池图像处理
- 英文原版-Certified Ethical Hacker CEH Foun
- Guide to Reliable Distributed Systems
- 基于图像处理的智能车寻迹算法设计
- Channel waveguides fabrication in bulk Lithium
- ARM嵌入式系统开发:软件设计与优化
- IT6802 Programming Guide
- CWAP Certified Wireless Analysis Professional
- Academic Writing--a practical guide for studen
- 医学超声图像处理研究+哈尔滨工业大
- Unigui 1.50.0.1481(含keygen)
- 友锋图像处理系统v3.rar(破解版
- 自己做的一个简单GUI扑克纸牌识别-
- 图像处理代码
- 图片-视频互换程序
- 基于图论的图像处理
评论
共有 条评论