How to use radio buttons more effectively in a button group?

조회 수: 4 (최근 30일)
Mohan Prasath Thirumalaisamy
Mohan Prasath Thirumalaisamy 2013년 8월 20일
답변: student of PU 2014년 5월 28일
Dear MATLAB users,
I have 5 different filters as 5 different radio buttons in MATLAB GUI. I made them into a button group and now when i click the each button the noise image is shown through the axes. But i want to set the button group in such a way to show only one filter (one image), when i click the particular radio button and others shouldn't be selected. So, I followed this (<http://stackoverflow.com/questions/2624875/how-to-pass-function-to-radio-button-in-a-button-group-created-using-guide-in-ma>) which is given by stackoverflow. But how do we "set" image in an axes. Thanks in advance
Regards,
Mohan Prasath Thirumalaisamy

답변 (2개)

Leah
Leah 2013년 8월 20일
In the radio button group callback you will need to either clear the axes or overwrite the data being displayed inside the object handle.
  댓글 수: 2
Mohan Prasath Thirumalaisamy
Mohan Prasath Thirumalaisamy 2013년 8월 20일
function uipanel1_SelectionChangeFcn(hObject, eventdata, handles)
if hObject == handles.gau
mean = str2double(get(handles.mn,'string'));
variance = str2double(get(handles.vn,'string'));
fig_2 = handles.ii;
fig_2 = im2double(rgb2gray(fig_2));
fig_2 = imnoise(fig_2,'gaussian',mean,variance);
axes(handles.ni);
imshow(fig2);
like this, i have done for the rest of the buttons/filters. But its not functioning here in the button group. I have given the same command/code for each button/filter but its working there. I dont know, whts the problem?

댓글을 달려면 로그인하십시오.


student of PU
student of PU 2014년 5월 28일
how to add image in axes on radion button click in radiobutton group ? please clarify ...

카테고리

Help CenterFile Exchange에서 Image Processing and Computer Vision에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by