hsv histogram into uitable

1 visualizzazione (ultimi 30 giorni)
ima
ima il 19 Giu 2020
Risposto: Nipun Agarwal il 19 Giu 2020
I want to export data from hsv histogram into uitable.
can somebody help me?
i already try.
this is my code.
i=getimage(handles.axes1);
hsvImage = rgb2hsv(i);
hImage = hsvImage(:, :, 1);
hHist = histogram(hImage);
set(handles.uitable1,'Data',hHist);
but there are error. it say Error using matlab.ui.control.Table/set
While setting property 'Data' of class 'Table':
Values within a cell array must be numeric, logical, or char

Risposte (1)

Nipun Agarwal
Nipun Agarwal il 19 Giu 2020
Hey,
It seems like the problem is because of the ‘Data’ variable you are using in set function. There might be a possibility that ‘Data’ variable has garbage data which is not of the form of char, numeric or Boolean data. You can refer to this link for more information regarding the set function and its properties.
You can also refer to this previous answer for better understanding.

Categorie

Scopri di più su Migrate GUIDE Apps in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by