资源简介

基于MATLAB gui 界面数字图像处理系统,包含去噪、增强、FFT、小波变换等数十种基本功能,还包括人脸检测,图像滤镜处理等功能

资源截图

代码片段和文件信息

function varargout = untitled(varargin)
% UNtitleD MATLAB code for untitled.fig
%      UNtitleD by itself creates a new UNtitleD or raises the existing
%      singleton*.
%
%      H = UNtitleD returns the handle to a new UNtitleD or the handle to
%      the existing singleton*.
%
%      UNtitleD(‘CALLBACK‘hobjecteventDatahandles...) calls the local
%      function named CALLBACK in UNtitleD.M with the given input arguments.
%
%      UNtitleD(‘Property‘‘Value‘...) creates a new UNtitleD or raises the
%      existing singleton*.  Starting from the left property value pairs are
%      applied to the GUI before untitled_OpeningFcn gets called.  An
%      unrecognized property name or invalid value makes property application
%      stop.  All inputs are passed to untitled_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 untitled

% Last Modified by GUIDE v2.5 02-Feb-2016 23:55:41

% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct(‘gui_Name‘       mfilename ...
                   ‘gui_Singleton‘  gui_Singleton ...
                   ‘gui_OpeningFcn‘ @untitled_OpeningFcn ...
                   ‘gui_OutputFcn‘  @untitled_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 untitled is made visible.
function untitled_OpeningFcn(hobject eventdata handles varargin)
% 将背景图像载入Matlab
% 如果图像不在当前目录,必须使用完整路径
ha=axes(‘units‘‘normalized‘‘position‘[0 0 1 1]);
 uistack(ha‘down‘);
 ii=imread(‘2.jpg‘);
%设置程序的背景图为beijing1.jpg
 image(ii);
 colormap gray
 set(ha‘handlevisibility‘‘off‘‘visible‘‘off‘);
% This function has no output args see OutputFcn.
% % 将背景图像载入Matlab
% % 如果图像不在当前目录,必须使用完整路径
% backgroundImage =importdata(‘2.jpg‘);
% % 选择坐标系
% axes(handles.axes3);
% % 将图片添加到坐标系中,于是就成了背景了
% image(backgroundImage);
% % 将坐标系的坐标轴标签去掉
% axis off
% 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 untitled (see VARARGIN)

% Choose default command line output for untitled
handles.output = hobject;

% Update handles structure
guidata(hobject handles);

% UIWAIT makes untitled wait for user response (see UIRESUME)
% uiwait(handles.figure1);


% --- Outputs from this function are returned to the command line.
function varargout = untitled_OutputFcn(hobject eventdata handles) 
% varargout  cell array for returning output args (see VARARGOUT);
% hobject    handle to f

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-07-22 19:45  MATLABgui界面设计\
     文件       24424  2018-07-04 10:09  MATLABgui界面设计\0.jpg
     文件       71382  2018-06-28 17:31  MATLABgui界面设计\2.jpg
     文件       18678  2018-06-28 22:12  MATLABgui界面设计\face.jpg
     文件       49405  2018-06-29 10:47  MATLABgui界面设计\face2.jpg
     文件       30159  2018-06-29 10:45  MATLABgui界面设计\face3.jpg
     文件       28750  2018-06-29 16:33  MATLABgui界面设计\face4.jpg
     文件       73084  2016-02-29 23:22  MATLABgui界面设计\face6.jpg
     文件       18277  2018-06-30 12:53  MATLABgui界面设计\face7.jpg
     文件      154317  2018-06-29 16:42  MATLABgui界面设计\fog.jpg
     文件      254381  2018-06-29 17:04  MATLABgui界面设计\fog2.jpg
     文件      490025  2018-06-24 22:53  MATLABgui界面设计\fruit.jpg
     文件       51623  2018-06-24 22:58  MATLABgui界面设计\fruit2.jpg
     文件       28569  2018-06-29 18:58  MATLABgui界面设计\recg_result.jpg
     文件       53109  2018-07-04 10:04  MATLABgui界面设计\untitled.fig
     文件       33202  2018-07-04 10:30  MATLABgui界面设计\untitled.m

评论

共有 条评论