How to input and save data from image to uitable?

1 回表示 (過去 30 日間)
Een Qurota Aini
Een Qurota Aini 2013 年 10 月 1 日
コメント済み: Een Qurota Aini 2013 年 10 月 2 日
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

回答 (1 件)

Walter Roberson
Walter Roberson 2013 年 10 月 1 日
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 件のコメント
Een Qurota Aini
Een Qurota Aini 2013 年 10 月 1 日
編集済み: Een Qurota Aini 2013 年 10 月 1 日
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 2013 年 10 月 2 日
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

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeDevelop Apps Using App Designer についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by