1 Star 0 Fork 0

lwjxp / Digital_Image_Processing_MatlabGUI

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Ordfilt_Function.m 4.51 KB
一键复制 编辑 原始数据 按行查看 历史
子愚 提交于 2015-05-25 12:52 . ## - Edion 0.6 ##
function varargout = Ordfilt_Function(varargin)
% ORDFILT_FUNCTION MATLAB code for Ordfilt_Function.fig
% ORDFILT_FUNCTION, by itself, creates a new ORDFILT_FUNCTION or raises the existing
% singleton*.
%
% H = ORDFILT_FUNCTION returns the handle to a new ORDFILT_FUNCTION or the handle to
% the existing singleton*.
%
% ORDFILT_FUNCTION('CALLBACK',hObject,eventData,handles,...) calls the local
% function named CALLBACK in ORDFILT_FUNCTION.M with the given input arguments.
%
% ORDFILT_FUNCTION('Property','Value',...) creates a new ORDFILT_FUNCTION or raises the
% existing singleton*. Starting from the left, property value pairs are
% applied to the GUI before Ordfilt_Function_OpeningFcn gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to Ordfilt_Function_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 Ordfilt_Function
% Last Modified by GUIDE v2.5 25-May-2015 12:40:49
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name', mfilename, ...
'gui_Singleton', gui_Singleton, ...
'gui_OpeningFcn', @Ordfilt_Function_OpeningFcn, ...
'gui_OutputFcn', @Ordfilt_Function_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 Ordfilt_Function is made visible.
function Ordfilt_Function_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 Ordfilt_Function (see VARARGIN)
% Choose default command line output for Ordfilt_Function
handles.output = hObject;
% Update handles structure
guidata(hObject, handles);
% UIWAIT makes Ordfilt_Function wait for user response (see UIRESUME)
% uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line.
function varargout = Ordfilt_Function_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;
% --- Executes on selection change in popupmenu1.
function popupmenu1_Callback(hObject, eventdata, handles)
% --- 图像处理
function Set_Button_Callback(hObject, eventdata, handles)
m=str2num(get(handles.edit1,'string'));
n=str2num(get(handles.edit1,'string'));
option_method=get(handles.popupmenu1,'value');
switch option_method
case 1
option_method=1;
case 2
option_method=m*n;
case 3
option_method=-1;
end
global Current_Image;
global Original_Image;
global Treated_Image;
global RGB_Flag;
Saved_Num=size(Original_Image,2);
if isempty(Original_Image)
errordlg('错误');
return
end
if isempty(Current_Image)
Current_Image=Original_Image{1,Saved_Num};
end
if RGB_Flag==3
temp_Img= rgb2gray(Current_Image);
figure('NumberTitle', 'off', 'Name', 'RGB转灰度图像','Tag','RGB2Gray_Fig');
imshow(temp_Img);
else
temp_Img=Current_Image;
end
if option_method~=-1
Treated_Image=ordfilt2(temp_Img,option_method,ones(m,n));
figure('NumberTitle', 'off', 'Name', '最值滤波','Tag','Filter_Fig');
else
Treated_Image=medfilt2(temp_Img,[m n]);
figure('NumberTitle', 'off', 'Name', '中值滤波','Tag','Filter_Fig');
end
imshow(Treated_Image,[]);
% --- 保存处理效果
function Sure_Button_Callback(hObject, eventdata, handles)
global Current_Image;
global Original_Image;
global Treated_Image;
Saved_Num=size(Original_Image,2);
Original_Image{1,Saved_Num+1}=Current_Image;
Current_Image=Treated_Image;
% --- 重置参数
function Set_Default_Button_Callback(hObject, eventdata, handles)
set(handles.popupmenu1,'value',1);
set(handles.edit1,'string','m');
set(handles.edit1,'string','m');
Matlab
1
https://gitee.com/lwjxp/Digital_Image_Processing_MatlabGUI.git
git@gitee.com:lwjxp/Digital_Image_Processing_MatlabGUI.git
lwjxp
Digital_Image_Processing_MatlabGUI
Digital_Image_Processing_MatlabGUI
master

搜索帮助