资源简介
图像处理方面的小尝试,完成图像的分割和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 图解
相关资源
- 中文版iPhone HIG_iPhone人机界面导引交互
- GUID批量生成工具
- cisco cme gui
- STM32L053C8T6驱动240×240彩屏钟表显示时
- 分块压缩感知图像处理仿真BCS.rar
- 对GUI实现自动化 测试的工具
- 简易聊天室.zip
- 在UniGUI中使用百度Echarts作为数据展示
- UGUI轮播功能基于DoTween
- irun User Guide.pdf
- Ogre 3d 1.7 beginner Guide 源码
- 9个DSP图像处理实验程序图像处理源代
- atguigu-Hadoop.txt
- 基于图像处理的铁轨表面缺陷检测算
- 简单多客户端聊天GUI界面,服务器转
- 数字图像处理实验项目_Laboratory Proj
- 图像处理光流法
- 低比特率图像压缩
- Opencv+Tensorflow入门人工智能处理无密完
- HALCON图像处理。识别视野中球的个数
- 压缩感知人脸识别以及图像处理
- 动态合并图片到一个图集
- ucGUI-gb2312汉字生成器v9.0.zip
- uCGUI Font Convert V2.6 可生成可用字体
- synopsys所有工具的USER GUIDE
- FLUENT 2020R2 tutorial guide PDF及案例源文
- 静脉识别程序
- 128*32OLED点阵屏驱动已移植GUI
- opencv图像处理视频
- lena256图像
评论
共有 条评论