function varargout = motion_remove(varargin)
% MOTION_REMOVE M-file for motion_remove.fig
% MOTION_REMOVE, by itself, creates a new MOTION_REMOVE or raises the existing
% singleton*.
%
% H = MOTION_REMOVE returns the handle to a new MOTION_REMOVE or the handle to
% the existing singleton*.
%
% MOTION_REMOVE('CALLBACK',hObject,eventData,handles,...) calls the local
% function named CALLBACK in MOTION_REMOVE.M with the given input arguments.
%
% MOTION_REMOVE('Property','Value',...) creates a new MOTION_REMOVE or raises the
% existing singleton*. Starting from the left, property value pairs are
% applied to the GUI before motion_remove_OpeningFunction gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to motion_remove_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 motion_remove
% Last Modified by GUIDE v2.5 27-Apr-2021 17:53:02
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name', mfilename, ...
'gui_Singleton', gui_Singleton, ...
'gui_OpeningFcn', @motion_remove_OpeningFcn, ...
'gui_OutputFcn', @motion_remove_OutputFcn, ...
'gui_LayoutFcn', [] , ...
'gui_Callback', []);
if nargin & isstr(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 motion_remove is made visible.
function motion_remove_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 motion_remove (see VARARGIN)
axes(handles.axes1);
img = imread('lena1.bmp');
imshow(img);
LEN = 30;
THETA = 45;
PSF = fspecial('motion',LEN,THETA);
MF = imfilter(img,PSF,'circular','conv');
axes(handles.axes2);
imshow(MF);
INITPSF = fspecial('motion',LEN,THETA);
[J,P] = deconvblind(MF,INITPSF,30);
axes(handles.axes3);
imshow(J);
set(handles.len_edit,'string',30);
set(handles.theta_edit,'string',45);
% Choose default command line output for motion_remove
handles.output = hObject;
% Update handles structure
guidata(hObject, handles);
% UIWAIT makes motion_remove wait for user response (see UIRESUME)
% uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line.
function varargout = motion_remove_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 during object creation, after setting all properties.
function len_edit_CreateFcn(hObject, eventdata, handles)
% hObject handle to len_edit (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
set(hObject,'BackgroundColor','white');
else
set(hObject,'BackgroundColor',get(0,'defaultUicontrolBackgroundColor'));
end
function len_edit_Callback(hObject, eventdata, handles)
% hObject handle to len_edit (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 len_edit as text
% str2double(get(hObject,'String')) returns contents of len_edit as a double
% --- Executes during object creation, after setting all properties.
function theta_edit_CreateFcn(hObject, eventdata, handles)
% hObject handle to theta_edit (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
set(hObject,'BackgroundColor','white');
else
set(hObject,'BackgroundColor',get(0,'defaultUicontrolBackgroundColor'));
end
function theta_edit_Callback(hObject, eventdata, handles)
% hObject handle to theta_edit (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 theta_edit as text
% str2double(get(hObject,'String')) returns contents of theta_edit as a double
% --- Executes on button press in apply_button.
function apply_button_Callback(hObject, eventdata, handles)
% hObject handle to apply_button (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
LEN = str2num(get(handles.len_edit,'string'));
THETA = str2num(get(handles.theta_edit,'string'));
img = getimage(handles.axes1);
PSF = fspecial('motion',LEN,THETA);
MF = imfilter(img,PSF,'circular','conv');
axes(handles.axes2);
imshow(MF);
INITPSF = fspecial('motion',LEN,THETA);
[J,P] = deconvblind(MF,INITPSF,30);
axes(handles.axes3);
imshow(J);
% --- Executes on button press in close_button.
function close_button_Callback(hObject, eventdata, handles)
% hObject handle to close_button (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
close(motion_remove);
% --- Executes during object creation, after setting all properties.
function image_pop_menu_CreateFcn(hObject, eventdata, handles)
% hObject handle to image_pop_menu (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called
% Hint: popupmenu controls usually have a white background on Windows.
% See ISPC and COMPUTER.
if ispc
set(hObject,'BackgroundColor','white');
else
set(hObject,'BackgroundColor',get(0,'defaultUicontrolBackgroundColor'));
end
% --- Executes on selection change in image_pop_menu.
function image_pop_menu_Callback(hObject, eventdata, handles)
% hObject handle to image_pop_menu (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
LEN = str2num(get(handles.len_edit,'string'));
THETA = str2num(get(handles.theta_edit,'string'));
val = get(hObject,'value');
str = get(hObject,'string');
switch str{val}
case 'Lena'
lena = [];
lena = imread('lena1.bmp');
img = lena;
case 'Saturn'
saturn = [];
load imdemos saturn
img = saturn;
case 'Quarter'
quarter = [];
load imdemos quarter
img = quarter;
case 'Circuit'
circuit = [];
load imdemos circuit
img = circuit;
case 'Fingerprint'
fingerprint = [];
fingerprint = imread('fingerprint.jpg');
img = fingerprint;
case 'Licenceplate'
licenceplate = [];
licenceplate = imread('licenceplate.jpg');
img = licenceplate;
case 'Cl


海神之光
- 粉丝: 6w+
最新资源
- 对电气接口要求(1).doc
- 自动化控制施工技术方案.详解(1).doc
- 【推荐下载】罗克韦尔自动化将在汉诺威工博会展示数字化和工业物联网机遇(1).pdf
- 本科毕业设计--spi接口的仿真及验证(1).doc
- 2020年通信技术员个人工作总结范文(1).doc
- 课程管理系统数据库设计及实现(1).doc
- 单片机原理课程设计-基于AT89C52的电子时钟设计(1).doc
- 北理工计算机体系结构习题解答(1).ppt
- 互联网金融对证券行业的影响分析与对策研究(1).docx
- 项目管理使用软件Porject使用手册(1).ppt
- 探索中小学人工智能教育的未来发展策略与方向(1).pptx
- 面向对象技术Java-期末复习试卷(三)(1).doc
- 湖南大学C语言试卷及答案(1).docx
- 会计实务:通信补贴如何进行纳税处理?(1).doc
- 互联网+时代测绘新技术的应用(1).docx
- 互联网+大数据背景下的候鸟老人服务体系建设探究(1).docx
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈


