资源简介

bp神经网络识别图片,具体算法和之rbf算法略有不同,毕设或建模推荐学习。

资源截图

代码片段和文件信息

% im = appendimages(image1 image2)
%
% Return a new image that appends the two images side-by-side.

function im = appendimages(image1 image2)

% Select the image with the fewest rows and fill in enough empty rows
%   to make it the same height as the other image.
rows1 = size(image11);
rows2 = size(image21);

if (rows1 < rows2)
     image1(rows21) = 0;
else
     image2(rows11) = 0;
end

% Now append both images side-by-side.
im = [image1 image2];   

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

     文件       2102  2006-04-05 11:04  BP\0.bmp

     文件       2102  2006-04-12 11:13  BP\1.bmp

     文件     692278  2015-03-20 20:09  BP\11.bmp

     文件       2102  2006-04-03 10:38  BP\2.bmp

     文件       2102  2006-04-03 10:38  BP\3.bmp

     文件       2102  2006-04-05 11:05  BP\4.bmp

     文件       2102  2006-04-05 11:05  BP\5.bmp

     文件       2102  2006-04-03 10:39  BP\6.bmp

     文件       2102  2006-04-03 10:39  BP\7.bmp

     文件       2102  2006-04-03 10:39  BP\8.bmp

     文件       2102  2006-04-03 10:39  BP\9.bmp

     文件        461  2005-07-07 21:54  BP\appendimages.m

     文件      46433  2005-07-07 21:54  BP\basmati.pgm

     文件      97697  2005-07-07 21:54  BP\book.pgm

     文件      72310  2005-07-07 21:54  BP\box.pgm

     文件        413  2015-03-20 19:13  BP\BPnet_creat.m

     文件       2747  2015-03-20 19:10  BP\BPnet_main.m

     文件       1920  2005-07-07 21:54  BP\defs.h

     文件       1055  2005-07-07 21:54  BP\LICENSE

     文件        631  2005-07-07 21:54  BP\Makefile

     文件       4876  2005-07-07 21:54  BP\match.c

     文件       1940  2005-07-07 21:54  BP\match.m

     文件        155  2015-03-20 20:10  BP\newtest.m

     文件    2073654  2015-01-03 16:23  BP\oil1.bmp

     文件    2073654  2015-01-03 16:24  BP\oil2.bmp

     文件       7952  2005-07-07 21:54  BP\README

     文件     196623  2005-07-07 21:54  BP\scene.pgm

     文件       1699  2005-07-07 21:54  BP\showkeys.m

     文件      45070  2005-07-07 21:54  BP\sift

     文件       2493  2015-03-20 20:08  BP\sift.m

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

评论

共有 条评论