Borrar filtros
Borrar filtros

how to create a GUI.. ?

3 visualizaciones (últimos 30 días)
hp
hp el 26 de Jun. de 2017
Comentada: hp el 27 de Jun. de 2017
i have 2 push buttons created on a GUI panel by dragging ... but how can i execute my M-code by clicking the push buttons. I have one M-file which extracts the Features of folder of images and features are stored in an excel sheet,by clicking the push button this M-file should be run and features should be stored in an excel sheet as said above. and there is another push button with the name "submit QUERY IMAGE' this button after clicking should run my another M-file called "queryimage colormoments" selects the image, calculates the color features of query image and retrieves similar images. so now how can I load my M-files in a respective push button codes.? please help....

Respuesta aceptada

Geoff Hayes
Geoff Hayes el 26 de Jun. de 2017
hema - you will want to call your function (m-file) from the pushbutton callback. If you are using GUIDE to create your GUI, see GUIDE push button callback. For example,
function pushbutton1_Callback(hObject, eventdata, handles)
% call your function
myFunction(...); % which may or may not take any input parameters
I'm assuming that your m-files are in fact functions and not scripts.
App Designer Callbacks may also prove useful if you are using App Designer.
  1 comentario
hp
hp el 27 de Jun. de 2017
Its working thank you so much sir...

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Display Image en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by