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

1 visualizzazione (ultimi 30 giorni)
% --- 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

Risposta accettata

B.k Sumedha
B.k Sumedha il 18 Mar 2016
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 Commenti
Marquel Dwi Putranto
Marquel Dwi Putranto il 18 Mar 2016
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

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Migrate GUIDE Apps in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by