基本信息
源码名称:基于matlab的数字图像处理(untitled.fig)
源码大小:0.11M
文件格式:.fig
开发语言:MATLAB
更新时间:2020-07-18
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍
基于matlab对将原图像进行了灰度,灰度直方图,灰度线性转换,灰度非线性转换,灰度均衡化,高斯噪声,椒盐噪声,泊松噪声等方面的处理

% --- Executes on button press in pushbutton7.

function pushbutton7_Callback(hObject, eventdata, handles)

% hObject    handle to pushbutton7 (see GCBO)

% eventdata  reserved - to be defined in a future version of MATLAB

% handles    structure with handles and user data (see GUIDATA)

handles=guidata(hObject);

I2=handles.I;

handles.J=imnoise(I2, 'gaussian', 0,0.05);% Ìí¼Ó¸ß˹ÔëÉù£¬·½²îֵΪ0.01

guidata(hObject,handles);

axes(handles.axes7);

imshow(handles.J)

 

 

% --- Executes on button press in pushbutton8.

function pushbutton8_Callback(hObject, eventdata, handles)

% hObject    handle to pushbutton8 (see GCBO)

% eventdata  reserved - to be defined in a future version of MATLAB

% handles    structure with handles and user data (see GUIDATA)

handles=guidata(hObject);

I2=handles.I;

handles.J=imnoise(I2, 'salt & pepper', 0.01);

guidata(hObject,handles);

axes(handles.axes8);

imshow(handles.J);

 

 

% --- Executes on button press in pushbutton9.

function pushbutton9_Callback(hObject, eventdata, handles)

% hObject    handle to pushbutton9 (see GCBO)

% eventdata  reserved - to be defined in a future version of MATLAB

% handles    structure with handles and user data (see GUIDATA)

handles=guidata(hObject);

I2=handles.I;

handles.J=imnoise(I2, 'poisson');

guidata(hObject,handles);

axes(handles.axes9);

imshow(handles.J);