Export features extraction as a .mat file

 Respuesta aceptada

Walter Roberson
Walter Roberson el 27 de Sept. de 2016
save('NameOfMatFile.mat', 'MEAN', 'SD', 'ENTROPY', 'RMS' and so on)
This assumes that you have stored the value you labelled MEAN in a variable named MEAN .
If you have a bunch of uicontrol edit boxes then it is possible to extract their String properties and save those, but since you are extracting features from an image you have already calculated those into variables and you might as well save the numeric variables directly.

6 comentarios

Hazel Sialongo
Hazel Sialongo el 27 de Sept. de 2016
This helps me but I want it to save as one file not as individual. Like, the mean,sd,entropy ... will save in one mat file. ( Like the image below but in .mat file )
Image Analyst
Image Analyst el 27 de Sept. de 2016
The way Walter showed you will save it as one mat file. All the variables you list will be in that same mat file. Try it and see. Use load() to read them back out of the mat file.
Hazel Sialongo
Hazel Sialongo el 27 de Sept. de 2016
I load it and this is the result.
Hazel Sialongo
Hazel Sialongo el 27 de Sept. de 2016
But I want to happen is like this.
hema purad
hema purad el 12 de En. de 2017
hi thank you for your answer
Walter Roberson
Walter Roberson el 12 de En. de 2017
Loop over the blobs or images, for each construct a row vector of the properties you want in the order you want. Use each of those row vectors as a row in a matrix. At the end, save the matrix.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Images en Centro de ayuda y File Exchange.

Preguntada:

el 27 de Sept. de 2016

Comentada:

el 13 de En. de 2017

Community Treasure Hunt

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

Start Hunting!

Translated by