MATLAB: Convert table to array or matrix

arraysImage Processing Toolboxmatrixtables

I have table with some extracted features like intensity, area, and diameter.these values is real values.
when I convert this table to an array, all data converted to be from 0 to 255 but I need my data in the array exactly as it in the table…..please help

Best Answer

I assume you got those measurements from regionprops. regionprops() can now deliver its output directly in table format:
stats = regionprops(BW, 'output', 'table');
If you're using an old version of MATLAB, you can use struct2table().