Effacer les filtres
Effacer les filtres

How to export data to single excel sheet for number of data from image processing

3 vues (au cours des 30 derniers jours)
how to provide loop so that several image can be analysised and its characteristics like, area , centroid, etc can be save in single excel file one by one.
data=regionprops('table' ,B, 'Area', 'EquivDiameter', 'Centroid', 'MajorAxisLength','MinorAxisLength')
writetable(data,'emberdata.csv');

Réponse acceptée

Kushagr Gupta
Kushagr Gupta le 8 Juin 2017
The easiest way I can think of is to append the entries from multiple images into a single table in a loop and then write that table to an excel or csv file. The following code illustrates this idea:
I{1} = imread('coins.png');
I{2} = imread('cameraman.tif');
final =table;
for id=1:2
data=regionprops('table',I{id}, 'Area', 'EquivDiameter', 'Centroid', 'MajorAxisLength','MinorAxisLength')
final = [final;data];
end
writetable(final,'mydata.csv')

Plus de réponses (0)

Catégories

En savoir plus sur Loops and Conditional Statements 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