Prev: targets for neural network
Next: solutions book
From: Zubia on 25 Jul 2010 02:27 Walter Roberson <roberson(a)hushmail.com> wrote in message <WnL2o.47288$Ls1.13180(a)newsfe11.iad>... > Zubia wrote: > > >> I tried alott butt i cant get solution plzz can u write the code here > > > > LIST OF ERRORS > > > > Error using ==> feval > > Undefined command/function 'text1_CreateFcn'. > > You have errors in how you used GUIDE. In my experience it is far easier > to not use GUIDE at all than to use GUIDE to do anything non-trivial. I > am unable to offer assistance with GUIDE. > > I do note that in your latest version of the program that you posted, > you still do not use image() or imagesc() to load the image you have > read in. You do, however, have a commented-out line in which you once > used imagesc() to display the image. ok now i used imagesc(image1); and i uncomment that ... but i m not getting how to call the external function plzzz tell me MY FUNCTION NAME IS LOADIMAGE.M AND THIS IS BUTTON CALLBACK CODE function pushbutton15_Callback(hObject, eventdata, handles) [image1]=loadimage; IS IT THE RITE FORMAT OF FUNCTION CALLING IN CALBACKK OF BUTTON
From: Zubia on 25 Jul 2010 12:15 i found my half mistake but my image is not cuming to the axis i can select it from dialog box only
From: Zubia on 25 Jul 2010 12:43 subplot(axes8) is it rite command?? coz my axes name is axes8
From: Walter Roberson on 25 Jul 2010 13:49 Zubia wrote: > subplot(axes8) is it rite command?? > coz my axes name is axes8 My speculation is that you will need to use subplot(handles.axes8)
From: Zubia on 27 Jul 2010 06:43
Walter Roberson <roberson(a)hushmail.com> wrote in message <hO_2o.38198$dx7.5545(a)newsfe21.iad>... > Zubia wrote: > > subplot(axes8) is it rite command?? > > coz my axes name is axes8 > > My speculation is that you will need to use > > subplot(handles.axes8) thnk u so much my code workd for loading i have an other problem i am using a call back function behind an other button for histogram equalization function pushbutton5_Callback(hObject, eventdata, handles,image1) subplot(handles.axes9); image1=histeq(uint8(image1)); imagesc(image1); %image1 is used is the output parametre for loadimage function as i paste above but it is giving error undefined function or variable 'loadimage' what should i do? |