资源简介
# 数字图像处理——基于GUI设计
对图像进行打开,保存,退出系统,并且能实现放大,缩小,裁剪,旋转,反色,锐化,初始化,添加滤波、噪声、图像的转换包括原图到二值、原图到灰度、灰度到二值,图像的直方图显示等
对图像进行打开,保存,退出系统,并且能实现放大,缩小,裁剪,旋转,反色,锐化,初始化,添加滤波、噪声、图像的转换包括原图到二值、原图到灰度、灰度到二值,图像的直方图显示等
代码片段和文件信息
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 20-Nov-2019 18:51:12
% 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)
% 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 untitled (see VARARGIN)
handles.output = hobject;
%背景
ha=axes(‘units‘‘normalized‘‘pos‘[0 0 1 1]);
uistack(ha‘down‘);
ii=imread(‘C:\Users\admin\Documents\MATLAB\图片\beijing.jpg‘);
%设置程序的背景图为beijing1.jpg
image(ii);
colormap gray
set(ha‘handlevisibility‘‘off‘‘visible‘‘off‘);
% Choose default command line output for untitled
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 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
% ------------------
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2019-12-25 15:12 数字图像处理大作业\
文件 11606 2019-12-28 16:59 数字图像处理大作业\unti
文件 28253 2019-12-28 16:59 数字图像处理大作业\unti
目录 0 2019-11-20 20:13 数字图像处理大作业\图片\
文件 20916 2019-11-20 19:15 数字图像处理大作业\图片\0000.jpg
文件 1092380 2002-08-27 02:51 数字图像处理大作业\图片\CFig0.tif
文件 554554 2003-05-03 13:53 数字图像处理大作业\图片\CFig1.png
文件 1166148 2002-10-13 08:47 数字图像处理大作业\图片\CFig2.png
文件 303783 2012-05-05 22:42 数字图像处理大作业\图片\CFig3.png
文件 626535 2003-05-03 13:53 数字图像处理大作业\图片\CFig4.png
文件 27130 2001-03-01 09:52 数字图像处理大作业\图片\CFig5.jpg
文件 95162 2000-12-04 13:57 数字图像处理大作业\图片\CFig6.tif
文件 164150 2016-07-20 08:37 数字图像处理大作业\图片\CFig7.png
文件 44638 2009-11-09 11:25 数字图像处理大作业\图片\CFig8.png
文件 1516120 2011-12-11 02:43 数字图像处理大作业\图片\CFig9.tif
文件 65126 2008-10-30 21:15 数字图像处理大作业\图片\Fig0.tif
文件 360310 2003-05-21 17:22 数字图像处理大作业\图片\Fig1.tif
文件 264806 2003-05-21 17:24 数字图像处理大作业\图片\Fig2.tif
文件 160358 2008-10-17 18:15 数字图像处理大作业\图片\Fig3.tif
文件 263222 2018-11-28 15:00 数字图像处理大作业\图片\Fig4.bmp
文件 183950 2000-12-04 13:57 数字图像处理大作业\图片\Fig5.tif
文件 230578 2000-12-04 13:58 数字图像处理大作业\图片\Fig6.tif
文件 69004 2000-12-04 13:57 数字图像处理大作业\图片\Fig7.tif
文件 342542 2006-04-11 10:56 数字图像处理大作业\图片\Fig8.tif
文件 31028 2001-02-21 12:34 数字图像处理大作业\图片\Fig9.tif
文件 117874 2019-11-14 10:38 数字图像处理大作业\图片\QQͼƬ20191114103827.jpg
文件 74634 2019-11-20 20:13 数字图像处理大作业\图片\beijing.jpg
文件 517553 2019-12-28 17:23 数字图像处理大作业\相关代码及软件制作说明.docx
相关资源
- 图像结合畸变矫正-数字图像处理
- 模型预测控制学习实用教材
- 火力发电厂含有SVG无功补偿装置的并
- unigui自定义下拉combobox
-
unigui_网页if
rame交互 - Design Compiler User Guide
- MPPT控制的可运行程序合辑
- 数字图像处理第三版中文及英文答案
- ogr2ogrGUI版本
- uniGUIchs中文手册第二版
- Mastering OpenCV with Practical Computer Visio
- 医学图像处理与分析.pdf
- 数字图像处理复习资料.doc
- 基于DSP的图像处理
- psychtoolbox教程
- A Practical Guide to Adopting the Universal Ve
- 综合性图像处理系统设计与开发
- GUI俄罗斯方块
- 《医学图像编程技术》源码
- 数字图像处理方法的研究文献翻译
-
raytracegroundup_v2.1_PLY_Multiplyob
jectsGr - VC数字图像处理 特效显示代码
- 敏捷实践指南_Agile Practice Guide(2018
- 教室人数统计GUI图片,摄像头.zip
- maximo7.5 Report Development Guide birt2.3.2 报
- 灰度图像基本处理,包括二值化和求
- tucker分解工具包
- Pm3_GUI 正式版修正版
- 电力仿真软件 psat 说明书
- Wind River Workbench Vxworks user guide
评论
共有 条评论