hsv histogram into uitable

1 Ansicht (letzte 30 Tage)
ima
ima am 19 Jun. 2020
Beantwortet: Nipun Agarwal am 19 Jun. 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

Antworten (1)

Nipun Agarwal
Nipun Agarwal am 19 Jun. 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.

Kategorien

Mehr zu Migrate GUIDE Apps finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by