char3.m
来自「matlab实现字符的识别」· M 代码 · 共 28 行
M
28 行
%% Character Recognition Example (III):Training a Simple NN for
%% classification
%% Read the image
I = imread('sample.bmp');
%% Image Preprocessing
img = edu_imgpreprocess(I);
for cnt = 1:50
bw2 = edu_imgcrop(img{cnt});
charvec = edu_imgresize(bw2);
out(:,cnt) = charvec;
end
%% Create Vectors for the components (objects)
P = out(:,1:40);
T = [eye(10) eye(10) eye(10) eye(10)];
Ptest = out(:,41:50);
%% Creating and training of the Neural Network
net = edu_createnn(P,T);
%% Testing the Neural Network
[a,b]=max(sim(net,Ptest));
disp(b);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?