资源简介

使用MATLAB编写的字母识别软件,程序中编写了顶层的GUI界面

资源截图

代码片段和文件信息

%形成用户界面
clear all;
%添加图形窗口
H=figure(‘Color‘[1 0 0]...
    ‘position‘[400 300 500 400]...
    ‘Name‘‘基于BP神经网络的英文字母识别‘...
    ‘Numbertitle‘‘off‘...
    ‘MenuBar‘‘none‘);
%画坐标轴对象,显示原始图像
h0=axes(‘position‘[0.1 0.6 0.3 0.3]);

%添加图像打开按钮
h1=uicontrol(H‘style‘‘push‘...
    ‘Position‘[370 300 120 60]...
    ‘String‘‘选择需要识别图片‘...
    ‘FontSize‘10...
    ‘Call‘‘op‘);
%画坐标轴对象,显示经过预处理之后的图像
h2=axes(‘position‘[0.1 0.2 0.3 0.3]);

%添加预处理按钮
h3=uicontrol(H‘style‘‘push‘...
    ‘Position‘[380 200 80 60]...
    ‘String‘‘处理后‘...
    ‘FontSize‘14...
    ‘Call‘‘preprocess‘);

%添加识别按钮
h4=uicontrol(H‘style‘‘push‘...
    ‘Position‘[380 100 80 60]...
    ‘String‘‘字母识别‘...
    ‘FontSize‘14...
    ‘Call‘‘recognize‘);

%添加显示识别结果的文本框
h5=uicontrol(H‘style‘‘text‘...
    ‘Position‘[250 80 100 80]...
    ‘String‘‘识别结果‘...
    ‘FontSize‘14...
    ‘Back‘[0 1 1]...
    ‘Fore‘[1 0 0]);

%添加训练神经网络按钮
h6=uicontrol(H‘style‘‘push‘...
    ‘Position‘[280 300 80 60]...
    ‘String‘‘网络训练‘...
    ‘FontSize‘14...
    ‘Call‘‘training‘);

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

     文件      12342  2008-06-02 20:48  test\0.bmp

     文件      12342  2008-06-02 20:49  test\1.bmp

     文件      12342  2008-06-02 20:52  test\10.bmp

     文件      12342  2008-06-02 20:54  test\11.bmp

     文件      12342  2008-06-02 20:57  test\12.bmp

     文件      12342  2008-06-02 20:58  test\13.bmp

     文件      12342  2008-06-02 20:59  test\14.bmp

     文件      12342  2008-06-02 21:00  test\15.bmp

     文件      12342  2008-06-02 21:00  test\16.bmp

     文件      12342  2008-06-02 21:01  test\17.bmp

     文件      12342  2008-06-02 21:02  test\18.bmp

     文件      12342  2008-06-02 21:02  test\19.bmp

     文件      12342  2008-06-02 20:49  test\2.bmp

     文件      12342  2008-06-02 21:03  test\20.bmp

     文件      12342  2008-06-02 21:04  test\21.bmp

     文件      12342  2008-06-02 21:05  test\22.bmp

     文件      12342  2008-06-02 21:06  test\23.bmp

     文件      12342  2008-06-02 21:07  test\24.bmp

     文件      12342  2008-06-02 21:07  test\25.bmp

     文件      12342  2008-06-02 20:50  test\3.bmp

     文件      12342  2008-06-02 20:50  test\4.bmp

     文件      12342  2008-06-02 20:50  test\5.bmp

     文件      12342  2008-06-02 20:51  test\6.bmp

     文件      12342  2008-06-02 20:51  test\7.bmp

     文件      12342  2008-06-02 20:51  test\8.bmp

     文件      12342  2008-06-02 20:52  test\9.bmp

     文件       1234  2018-05-18 17:08  GUI_mian.m

     文件      33372  2018-05-18 16:41  image_data.mat

     文件       7721  2009-08-14 16:22  img011-001.png

     文件       7709  2009-08-14 16:22  img011-002.png

............此处省略1438个文件信息

评论

共有 条评论