how to store cells values of multiple images into a single file ?.

2 vues (au cours des 30 derniers jours)
Farman Shah
Farman Shah le 9 Août 2018
Commenté : Walter Roberson le 7 Fév 2020
I stored the 10 strongest points of Surf features into cells i.e.every cell contains 10 points of surf features strongest points and i have 40 images so total 40 cells contains 400 points, what i want to do is to get all the points for all the images (400 points for 10 images) into a single file in rows to further label it for classification. any help will be appreciated..thanks
here is the description link where what i did for storing the values for all 40 images into cells.
https://www.mathworks.com/matlabcentral/answers/414185-how-can-i-store-10-strongest-points-of-surf-features-of-multiple-images-in-one-variable-using-matlab
  1 commentaire
Paul Siefert
Paul Siefert le 10 Août 2018
What do you mean with "single file in rows"? Do you mean you want an array of 400 x 1?

Connectez-vous pour commenter.

Réponses (2)

Fangjun Jiang
Fangjun Jiang le 10 Août 2018
cell2mat() reshape()

fadi ssuhimat
fadi ssuhimat le 7 Fév 2020
Can you help me I have same issue?
  1 commentaire
Walter Roberson
Walter Roberson le 7 Fév 2020
Load all of the data into a cell array, one entry per file Then
data_array = cell2mat( cellfun(@(C) reshape(C,1,[]), TheCellArray(:), 'uniform', 0) );
Now the entire content of each file will be put into a single row, and the rows (files) will be put together into a 2D matrix.
This code as-written will fail if the files are not all the same size. If that is a problem then you would need to define how you want to store the data in that situation.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Convert Image Type dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by