hsv histogram into uitable

1 view (last 30 days)
ima
ima on 19 Jun 2020
Answered: Nipun Agarwal on 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

Answers (1)

Nipun Agarwal
Nipun Agarwal on 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.

Categories

Find more on Migrate GUIDE Apps 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!