⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 example35_figure.m

📁 是一个用MATLAB编的一个系统
💻 M
字号:
%bp3_figure:to look the figure of input&output
%==============
%==============


[name,path]=uigetfile('*.bmp');
pathname=strcat(path,name);
I=imread(pathname);
b=rgb2gray(I);

b1=imnoise(b,'gaussian',0,0.002);   % 对输入图像加上均值为0方差为0.002的高斯噪声

b1Zoom=imresize(b1,[96,96],'bilinear');  %为方便在界面上显示,将图像I放大
imshow(b1Zoom)
% set(Hbp3_axes,'current_data',b1Zoom);
%set(Hbp3_axes,'Userdata',plot(x,y)); % 也可以

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -