フィルターのクリア

How to set noise density

2 ビュー (過去 30 日間)
amira fauzey
amira fauzey 2016 年 11 月 10 日
回答済み: Walter Roberson 2016 年 11 月 10 日
i have edittext box and also checkbox.user can set the value of noise density from 0.1-1.0.what i want to do is, user can key in the value in edittext and after that press the checkbox,so that the noise will add to the image.How to do this?please help me
function chkSaltPepper_Callback(hObject, eventdata, handles)
x = get(handles.TxtNoiseDensity,'String');
d = get(handles.TxtNoiseDensity,'Value');
if isempty(x)
errordlg('Error:Please enter noise density');
else
noiseImage = imnoise(noiseImage,'salt & pepper',d);
function TxtNoiseDensity_Callback(hObject, eventdata, handles)
input = str2double(get(hObject,'String'));
if isnan(input)
errordlg('You must enter a numeric value','Invalid Input','modal')
uicontrol(hObject)
return
else
display(input);
end

採用された回答

Walter Roberson
Walter Roberson 2016 年 11 月 10 日
function chkSaltPepper_Callback(hObject, eventdata, handles)
x = get(handles.TxtNoiseDensity,'String');
if isempty(x)
errordlg('Error:Please enter noise density');
else
d = str2double(x);
noiseImage = imnoise(noiseImage,'salt & pepper',d);
end

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeWord games についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by