1 Star 0 Fork 0

lwjxp / Digital_Image_Processing_MatlabGUI

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
GrayTrans.m 9.06 KB
一键复制 编辑 原始数据 按行查看 历史
子愚 提交于 2015-05-10 21:54 . Editon 0.2
function varargout = GrayTrans(varargin)
% GRAYTRANS MATLAB code for GrayTrans.fig
% GRAYTRANS, by itself, creates a new GRAYTRANS or raises the existing
% singleton*.
%
% H = GRAYTRANS returns the handle to a new GRAYTRANS or the handle to
% the existing singleton*.
%
% GRAYTRANS('CALLBACK',hObject,eventData,handles,...) calls the local
% function named CALLBACK in GRAYTRANS.M with the given input arguments.
%
% GRAYTRANS('Property','Value',...) creates a new GRAYTRANS or raises the
% existing singleton*. Starting from the left, property value pairs are
% applied to the GUI before GrayTrans_OpeningFcn gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to GrayTrans_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 GrayTrans
% Last Modified by GUIDE v2.5 10-May-2015 21:45:09
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name', mfilename, ...
'gui_Singleton', gui_Singleton, ...
'gui_OpeningFcn', @GrayTrans_OpeningFcn, ...
'gui_OutputFcn', @GrayTrans_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 GrayTrans is made visible.
function GrayTrans_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 GrayTrans (see VARARGIN)
% Choose default command line output for GrayTrans
handles.output = hObject;
% Update handles structure
guidata(hObject, handles);
% UIWAIT makes GrayTrans wait for user response (see UIRESUME)
% uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line.
function varargout = GrayTrans_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 button press in Set_Button.
function Set_Button_Callback(hObject, eventdata, handles)
% hObject handle to Set_Button (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
highin=str2num(get(handles.edit1,'string'));
lowin=str2num(get(handles.edit2,'string'));
highout=str2num(get(handles.edit3,'string'));
lowout=str2num(get(handles.edit4,'string'));
gamma=str2num(get(handles.edit5,'string'));
imadjust_c=[highin lowin highout lowout gamma];
global Current_Image;
global Original_Image;
global Treated_Image;
Saved_Num=size(Original_Image,2);
if isempty(Current_Image)
Current_Image=Original_Image{1,Saved_Num};
end
Treated_Image=imadjust(Current_Image,[lowin highin],[lowout highout],gamma);
figure('NumberTitle', 'off', 'Name', 'ͼ','Tag','Treated_Image_Fig');
imshow(Treated_Image);
hold on;
% --- Executes on button press in Set_Defult_Button.
function Set_Defult_Button_Callback(hObject, eventdata, handles)
% hObject handle to Set_Defult_Button (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
set(handles.edit1,'string','1');
set(handles.edit2,'string','0');
set(handles.edit3,'string','1');
set(handles.edit4,'string','0');
set(handles.edit5,'string','1');
% --- Executes on button press in Sure_Button.
function Sure_Button_Callback(hObject, eventdata, handles)
% hObject handle to Sure_Button (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
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 edit1_Callback(hObject, eventdata, handles)
% hObject handle to edit1 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Hints: get(hObject,'String') returns contents of edit1 as text
% str2double(get(hObject,'String')) returns contents of edit1 as a double
% --- Executes during object creation, after setting all properties.
function edit1_CreateFcn(hObject, eventdata, handles)
% hObject handle to edit1 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called
% Hint: edit controls usually have a white background on Windows.
% See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
set(hObject,'BackgroundColor','white');
end
function edit2_Callback(hObject, eventdata, handles)
% hObject handle to edit2 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Hints: get(hObject,'String') returns contents of edit2 as text
% str2double(get(hObject,'String')) returns contents of edit2 as a double
% --- Executes during object creation, after setting all properties.
function edit2_CreateFcn(hObject, eventdata, handles)
% hObject handle to edit2 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called
% Hint: edit controls usually have a white background on Windows.
% See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
set(hObject,'BackgroundColor','white');
end
function edit3_Callback(hObject, eventdata, handles)
% hObject handle to edit3 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Hints: get(hObject,'String') returns contents of edit3 as text
% str2double(get(hObject,'String')) returns contents of edit3 as a double
% --- Executes during object creation, after setting all properties.
function edit3_CreateFcn(hObject, eventdata, handles)
% hObject handle to edit3 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called
% Hint: edit controls usually have a white background on Windows.
% See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
set(hObject,'BackgroundColor','white');
end
function edit4_Callback(hObject, eventdata, handles)
% hObject handle to edit4 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Hints: get(hObject,'String') returns contents of edit4 as text
% str2double(get(hObject,'String')) returns contents of edit4 as a double
% --- Executes during object creation, after setting all properties.
function edit4_CreateFcn(hObject, eventdata, handles)
% hObject handle to edit4 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called
% Hint: edit controls usually have a white background on Windows.
% See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
set(hObject,'BackgroundColor','white');
end
function edit5_Callback(hObject, eventdata, handles)
% hObject handle to edit5 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Hints: get(hObject,'String') returns contents of edit5 as text
% str2double(get(hObject,'String')) returns contents of edit5 as a double
% --- Executes during object creation, after setting all properties.
function edit5_CreateFcn(hObject, eventdata, handles)
% hObject handle to edit5 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called
% Hint: edit controls usually have a white background on Windows.
% See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
set(hObject,'BackgroundColor','white');
end
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

搜索帮助