【手写数字识别】基于matlab GUI贝叶斯最小错误率手写数字识别【含Matlab源码 308期】
一、背景简介
1 实验目的
本次试验的目的是建立一个手写数字识别系统,能够准确 的提取用户在手写板上写出的数字,并且能够正确地识别出来。
2 实验方法及步骤
此次实验选择MATLAB中的GUI界面来构建实验的平台框架,然后采用基于最小错误率的贝叶斯决策来作为识别方法,对手写数字进行识别。需要在GUI界面中搭建好所需的对象,并写入完成相关功能的程序。其实现的功能是首先能够识别用户输入的手写数字,并提取输入数字的特征;然后将得到的手写数字特征加上对应数字的标签,将其存入样本库中,用于后面手写数字的对比识别;最后根据用户输入的手写数字,提取特征并在样本库中根据贝叶斯决策来判断手写数字的类型,最后显示识别结果。主要分为以下四个步骤:
(1)平台搭建
本次手写数字识别系统的编程环境为MATLAB,通过在MATLAB的GUI界面中搭建框架,并在对应的对象的回调函数中编写相关的程序来实现手写数字识别的功能。
在GUI界面中需要的对象有两个静态文本框、一个坐标区、一个可编辑文本,搭建的界面及其功能如图1所示。
由图可以看出每个对象都有各自的的功能:“手写板”坐标用于用户书写数字;“特征提取”可编辑文本用于显示手写数字的每个特征值,以便后面的对比识别;“清除”按钮可以清除用户写在“手写板”上的数字以及“特征提取”中数字特征值;“提取特征”按钮的功能是对“手写板”中的数字进行识别处理,提取相应的特征值并输到“特征提取”可编辑文本中显示;“保存为样本”按钮则是用于建立样本数据库,将前期的样本特征保存到样本库中,以便后面数字的识别;而“识别”按钮则是根据当前输入的手写数字特征,在样本库中寻找对应的数字类型。
此次手写数字识别系统的平台搭建就如图1所示,然后通过搭建的界面根据需要实现的功能对相应的对象的回调函数编写程序。
(2)特征描述
特征描述就是对手写数字进行分析处理,得到数字的特征,然后根据每类数字各自的特征值来识别手写数字的类型。
在此次设计中,手写数字特征描述的步骤为:首先将含有全部特征信息的手写数字图像从坐标轴中提取出来,将提取出来的书写数字图像进行二值化处理;然后将处理后的图像分成6 × 6 6\times66×6小格,每个网格中全部1值像素点个数与全部像素点个数之比就是手写数字在这一网格中的特征值,得到36个网格中的特征值并存入特征矩阵feature中,即feature矩阵包含了手写数字所有的特征信息;最后显示手写数字的特征图,判断每个网格的特征值是否大于预先设定好的阈值(此次设计中取0.1),若大于阈值,则此网格全部像素点的值为1,反之网格全部像素点的值为0。其实现如图2所示。
(3)建立最小错误率贝叶斯决策分类器
4)实现手写数字识别
根据上述设计,得到了手写数字识别系统。首先,通过输入样本得到样本库。此次实验中存入样本库samplelib.mat的每类样本的个数为20,选取的特征参数为6 × 6 6\times 66×6。
二、部分源代码
function varargout = save_sample(varargin)
% SAVE_SAMPLE MATLAB code for save_sample.fig
% SAVE_SAMPLE, by itself, creates a new SAVE_SAMPLE or raises the existing
% singleton*.
%
% H = SAVE_SAMPLE returns the handle to a new SAVE_SAMPLE or the handle to
% the existing singleton*.
%
% SAVE_SAMPLE('CALLBACK',hObject,eventData,handles,...) calls the local
% function named CALLBACK in SAVE_SAMPLE.M with the given input arguments.
%
% SAVE_SAMPLE('Property','Value',...) creates a new SAVE_SAMPLE or raises the
% existing singleton*. Starting from the left, property value pairs are
% applied to the GUI before save_sample_OpeningFcn gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to save_sample_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 save_sample
% Last Modified by GUIDE v2.5 08-Apr-2019 21:40:02
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name', mfilename, ...
'gui_Singleton', gui_Singleton, ...
'gui_OpeningFcn', @save_sample_OpeningFcn, ...
'gui_OutputFcn', @save_sample_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 save_sample is made visible.
function save_sample_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 save_sample (see VARARGIN)
% Choose default command line output for save_sample
handles.output = hObject;
% Update handles structure
guidata(hObject, handles);
if exist('template.mat','file')~=0
load template.mat;
end
% UIWAIT makes save_sample wait for user response (see UIRESUME)
% uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line.
function varargout = save_sample_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 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
% --- Executes on button press in pushbutton1.
function pushbutton1_Callback(hObject, eventdata, handles)
% hObject handle to pushbutton1 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
load template pattern
feature = importdata('feature.dat');
% 获取样品种类
str = get(handles.edit1,'string');
if isempty(str)
warndlg('请输入数字!','警告:');
return;
end
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
- 74
- 75
- 76
- 77
- 78
- 79
- 80
- 81
- 82
- 83
- 84
- 85
- 86
- 87
- 88
- 89
- 90
- 91
- 92
- 93
- 94
- 95
- 96
- 97
- 98
- 99
- 100
- 101
- 102
- 103
- 104
- 105
- 106
- 107
- 108
- 109
- 110
- 111
- 112
- 113
- 114
- 115
- 116
- 117
三、运行结果
四、matlab版本及参考文献
1 matlab版本
2014a
2 参考文献
[1] 蔡利梅.MATLAB图像处理——理论、算法与实例分析[M].清华大学出版社,2020.
[2]杨丹,赵海滨,龙哲.MATLAB图像处理实例详解[M].清华大学出版社,2013.
[3]周品.MATLAB图像处理与图形用户界面设计[M].清华大学出版社,2013.
[4]刘成龙.精通MATLAB图像处理[M].清华大学出版社,2015.
文章来源: qq912100926.blog.csdn.net,作者:海神之光,版权归原作者所有,如需转载,请联系作者。
原文链接:qq912100926.blog.csdn.net/article/details/113824748
- 点赞
- 收藏
- 关注作者
评论(0)