• 大小: 388KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-06-16
  • 语言: Matlab
  • 标签:

资源简介

MATLAB数字图像处理 文件:打开、显示、重载、RGB变灰度、保存; 几何变换:垂直、水平镜像,图像转置、平移、缩放、旋转; 正交变换:FFT、DFT、DCT、DST、DHT、DWasht; 灰度处理:反色、直方图均衡、阈值变换、阈值变换、分段线性变换、对数非线性变换、指数非线性变换; 图像增强:噪声(高斯、椒盐),平滑(均值法、邻域平均法、中值滤波法、巴特沃氏低通滤波); 锐化:梯度锐化、拉普拉斯锐化、巴特沃氏高通滤波; 伪彩色增强:亮度切割法、灰度级彩色变换法; 图像分割:灰度阈值法、边缘检测法(Robert算子、Laplacian算子、Prewitt算子、Canny算子、Sobel算子); 图像恢复:退化模型(运动模糊、带噪声的运动模糊),复原方法(直接逆滤波、维纳滤波); 图像编码:霍夫曼编码、行程编码;

资源截图

代码片段和文件信息

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

% Copyright 2002-2003 The MathWorks Inc.

% Edit the above text to modify the response to help MyDIP

% Last Modified by GUIDE v2.5 18-Nov-2006 20:20:07

% Begin initialization code - DO NOT EDIT

gui_Singleton = 1;
gui_State = struct(‘gui_Name‘       mfilename ...
                   ‘gui_Singleton‘  gui_Singleton ...
                   ‘gui_OpeningFcn‘ @MyDIP_OpeningFcn ...
                   ‘gui_OutputFcn‘  @MyDIP_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 MyDIP is made visible.
function MyDIP_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 MyDIP (see VARARGIN)

% Choose default command line output for MyDIP
handles.output = hobject;
handles.flag=logical(0);
% Update handles structure
guidata(hobject handles);

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

% --- Outputs from this function are returned to the command line.
function varargout = MyDIP_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
varargout{1} = handles.output;

% --------------------------------------------------------------------
function openfile_Callback(hobject eventdata hand

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      66616  2000-07-25 19:18  MATLAB数字图像处理算法演示程序GUI\Couple.bmp

     文件      66616  2006-03-19 22:38  MATLAB数字图像处理算法演示程序GUI\girl.bmp

     文件       2224  2015-06-25 16:26  MATLAB数字图像处理算法演示程序GUI\HuffmanCodeTable.txt

     文件      66616  2006-11-05 14:04  MATLAB数字图像处理算法演示程序GUI\lena.bmp

     文件      17464  2006-11-05 17:33  MATLAB数字图像处理算法演示程序GUI\lena128.bmp

     文件      41080  2006-11-05 17:35  MATLAB数字图像处理算法演示程序GUI\lena200.bmp

     文件      25600  2006-11-22 16:58  MATLAB数字图像处理算法演示程序GUI\Matlab算法演示说明.doc

     文件      11651  2015-06-18 19:22  MATLAB数字图像处理算法演示程序GUI\MyDIP.fig

     文件      70432  2015-06-18 19:22  MATLAB数字图像处理算法演示程序GUI\MyDIP.m

     文件      66616  2006-10-10 11:09  MATLAB数字图像处理算法演示程序GUI\NBA.bmp

     文件      66616  2006-10-10 11:09  MATLAB数字图像处理算法演示程序GUI\NBA2001_01b_t.bmp

     文件      52280  2006-11-05 17:34  MATLAB数字图像处理算法演示程序GUI\NBA200256.bmp

    ..A..H.     62976  2007-02-04 11:30  MATLAB数字图像处理算法演示程序GUI\Thumbs.db

     文件      54682  2006-11-19 10:21  MATLAB数字图像处理算法演示程序GUI\Water.jpg

     目录          0  2015-06-25 16:26  MATLAB数字图像处理算法演示程序GUI

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

               671469                    15


评论

共有 条评论