How to have 2 different appearances to Axes4 and Axes5 for SKIN DETECTION? Why Error?

조회 수: 1 (최근 30일)
% --- Executes on button press in pushbutton10.
function pushbutton10_Callback(hObject, eventdata, handles)
% hObject handle to pushbutton10 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
proyek=guidata(gcbf);
I=get(proyek.axes2,'Userdata');
I=get(proyek.axes3,'Userdata');
img_ycbcr = rgb2ycbcr(I);
Cb = img_ycbcr(:,:,2);
Cr = img_ycbcr(:,:,3);
img_ycbcr2 = rgb2ycbcr(J);
Cb = img_ycbcr2(:,:,2);
Cr = img_ycbcr2(:,:,3);
set(proyek.figure1,'CurrentAxes',proyek.axes4);
set(proyek.figure1,'CurrentAxes',proyek.axes5);
set(imshow(img_ycbcr));
set(imshow(img_ycbcr2));
set(proyek.axes4,'Userdata',img_ycbcr);
set(proyek.axes4,'Userdata',img_ycbcr2);
redo_Callback(hObject,eventdata, handles);
Error while evaluating uicontrol Callback Undefined function or variable 'J'. Error in SmarthomeIsyarat>pushbutton10_Callback (line 217) img_ycbcr2 = rgb2ycbcr(J); Error in gui_mainfcn (line 96) feval(varargin{:}); Error in SmarthomeIsyarat (line 42) gui_mainfcn(gui_State, varargin{:});
Error in @(hObject,eventdata)SmarthomeIsyarat('pushbutton10_Callback',hObject,eventdata,guidata(hObject))
Error while evaluating uicontrol Callback

채택된 답변

B.k Sumedha
B.k Sumedha 2016년 3월 18일
In your 3rd line of the code again your specifying I.
I=get(proyek.axes3,'Userdata');
I hope that needs to change to
J=get(proyek.axes3,'Userdata');
  댓글 수: 2
Marquel Dwi Putranto
Marquel Dwi Putranto 2016년 3월 18일
Undefined function 'redo_Callback' for input arguments of type 'struct'.
Error in SmarthomeIsyarat>pushbutton10_Callback (line 230) redo_Callback(hObject,eventdata, handles);
Error in gui_mainfcn (line 96) feval(varargin{:});
Error in SmarthomeIsyarat (line 42) gui_mainfcn(gui_State, varargin{:});
Error in @(hObject,eventdata)SmarthomeIsyarat('pushbutton10_Callback',hObject,eventdata,guidata(hObject))
Error while evaluating uicontrol Callback

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by