How to input and save data from image to uitable?

5 次查看(过去 30 天)
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 CenterFile Exchange 中查找有关 Database Toolbox 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by