example76_result.m
来自「神经网络matlab代码。有GUI界面实现和讲解」· M 代码 · 共 13 行
M
13 行
%%%example76_result
%%%%imread the image samples
figure('name','测试图像','numbertitle','off');
imgx=imread('example76_imgx.bmp');
subplot(1,3,2),imshow(rgb2gray(imgx));
figure('name','测试图像特征提取','numbertitle','off');
%%%test
test=reshape(double(rgb2gray(imgx)),32*32,1);
F=W*(test-b);
x=1:cpts;
F=F(x);
plot(x,F,'b',x,F,'r.');
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?