• 大小: 8KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-06-04
  • 语言: 其他
  • 标签: 图像处理  GUI  

资源简介

图像处理方面的小尝试,完成图像的分割和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\untitled6.fig

     文件       3507  2015-06-07 01:23  DIP\untitled6.m

     目录          0  2015-06-24 13:14  DIP

----------- ---------  ---------- -----  ----

                 9959                    3


评论

共有 条评论