Hi, how to adding value to array in existing array ?

7 views (last 30 days)
I have aray containing headers and values from some feature extractions. I also have 275 images. When I run my code, I want the value from the overall extraction of my image to be stored in the same array without deleting the extraction value of the previous image feature. below I created a code that only stores feature extraction values from one image, when I run the code for the next image, the previous value disappears. Please help me to complete my code. Thanks
header = {'area','perimeter','roundness','solidity','slimness','rectangu','NF','RPD'};
classinfo = {Area Perimeter Round Slimness Rect soli NF RPD RPLW};
Fitur = [header; classinfo];
  12 Comments
Kevin Chng
Kevin Chng on 23 Oct 2018
Edited: Kevin Chng on 23 Oct 2018
Does it working for you? if yes, kindly accept my answer.
Oman Wisni
Oman Wisni on 23 Oct 2018
of course sir, I received all your answers.

Sign in to comment.

Accepted Answer

Kevin Chng
Kevin Chng on 23 Oct 2018
Edited: Kevin Chng on 23 Oct 2018
Solution is to save the array in .mat file, therefore, for next time to run the script, it will load the mat file, and add new value to the variable/table in the .mat file.
%save in array matlab
try
load Fitur.mat
catch me
end
if exist('Fitur','var')~=0
height = size(Fitur,1);
ID = height+1;
else
Fitur = [];
ID = 1;
end
classinfo = [ID area perimeter roundness solidity slimness rectangu NF RPD...
RPLW M1 M2 M3 M4 M5 M6 M7 mu deviasi energi entropi smoothness...
contrast homogenitas energi korelation];
Fitur = [Fitur; classinfo];
Fiturtable=array2table(Fitur);
header = {'ID' 'area','perimeter','roundness','solidity','slimness','rectangu','NF','RPD'...
'RPLW','M1','M2','M3','M4','M5','M6','M7','mu','deviasi','energi','entropi','smoothness'...
'contrast','homogenitas','energi2','korelation'};
Fiturtable.Properties.VariableNames = header;
save('Fitur.mat','Fitur','Fiturtable')
  53 Comments
Oman Wisni
Oman Wisni on 6 Nov 2018
Edited: Oman Wisni on 6 Nov 2018
Sir, I want to take all the pictures from my folder. I have made a code to take all the pictures and from each of the images I extracted the feature. after getting the value from feature extraction I want to save it in a table that was created. but I got an Error using cellstr.
Here I attached the file sir, please help me to fix my code sir. Thank you sir

Sign in to comment.

More Answers (0)

Categories

Find more on Image Processing Toolbox 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!