登录 注册
当前位置:主页 > 资源下载 > 12 > MATLAB神经网络用于数字识别源程序-MATLAB 神经网络用于数字识别源程序[matlab].rar下载

MATLAB神经网络用于数字识别源程序-MATLAB 神经网络用于数字识别源程序[matlab].rar下载

  • 更新:2024-09-28 14:21:32
  • 大小:147KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:Matlab - 大数据
  • 格式:RAR

资源介绍

MATLAB神经网络用于数字识别源程序-MATLAB 神经网络用于数字识别源程序[matlab].rar MATLAB 神经网络用于数字识别源程序[matlab].rar %----------------------------------------------------------------- %Digit_Recognition.m Developed by Rentian Huang, %Hope University,Distribute System Email:10076507@hope.ac.uk %----------------------------------------------------------------- clear all; p=1; load digit net;                               %Load the BP Neural Networks which been trained test=input; %Prompt for input digit image for recognize s=input; %Prompt for input number of digits x=imread;                          %read the input image xbw=im2bw;                              %Convert the image to Black and White image xbw=medfilt2;%Use medium filter if needed bw=xbw; result='';