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

2 visualizaciones (últimos 30 días)
Farman Shah
Farman Shah el 9 de Ag. de 2018
Comentada: Walter Roberson el 7 de Feb. de 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 comentario
Paul Siefert
Paul Siefert el 10 de Ag. de 2018
What do you mean with "single file in rows"? Do you mean you want an array of 400 x 1?

Iniciar sesión para comentar.

Respuestas (2)

Fangjun Jiang
Fangjun Jiang el 10 de Ag. de 2018
cell2mat() reshape()

fadi ssuhimat
fadi ssuhimat el 7 de Feb. de 2020
Can you help me I have same issue?
  1 comentario
Walter Roberson
Walter Roberson el 7 de Feb. de 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.

Iniciar sesión para comentar.

Categorías

Más información sobre Convert Image Type en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by