How to input and save data from image to uitable?

1 view (last 30 days)
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

Answers (1)

Walter Roberson
Walter Roberson on 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 Comments
Een Qurota Aini
Een Qurota Aini on 1 Oct 2013
Edited: Een Qurota Aini on 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 on 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

Sign in to comment.

Categories

Find more on App Building in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!