Effacer les filtres
Effacer les filtres

How to input and save data from image to uitable?

1 vue (au cours des 30 derniers jours)
Een Qurota Aini
Een Qurota Aini le 1 Oct 2013
how to enter data in comand window to the gui matlab uitable? I have a program from the data generating RGB image, how to insert the data to uitable? Please Help me Een sincerly Qurota Aini

Réponses (1)

Walter Roberson
Walter Roberson le 1 Oct 2013
Put the data into a cell array. set() the 'Data' property of the uitable to be the cell array.
For example,
tab = {2, 4, 6, 8*rand()};
set(handles.uitable1, 'Data', tab);
  2 commentaires
Een Qurota Aini
Een Qurota Aini le 1 Oct 2013
Modifié(e) : Een Qurota Aini le 1 Oct 2013
thanks for answer.
sorry Mr. Walter i'm not understand about tab = {2, 4, 6, 8*rand(};........
what is the mean?
Een Qurota Aini
Een Qurota Aini le 2 Oct 2013
thank you very much for the reply. I've tried several programs. Well now I am confused on the database for the value of the feature on the leaves. As in the fingerprint program with neural network, the study was also no image database containing finger. Well, I am confused. 1. When the program start to figure out the histogram data leaves no feature value in the command window 2. When data from the value of the features I put my gui uitable program confused what should I enter or source code to connect the data values to be entered into uitable feature in gui? I was confused about entering data values in the command window feature leaves that go into uitable and can be saved in the uitable as inputs for training and testing the neural network

Connectez-vous pour commenter.

Catégories

En savoir plus sur App Building dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by