Performing Operations on an Image Sequence
1 回表示 (過去 30 日間)
古いコメントを表示
I am looking for the centroid and diameter of the every frame in an image sequence. How can I save the list of data in csv file format? It's in the for loop by the way.
0 件のコメント
回答 (1 件)
Image Analyst
2019 年 2 月 16 日
編集済み: Image Analyst
2019 年 2 月 16 日
In the loop, just save the values to your lists, then call csvwrite() after the loop.
for k = 1 : numberOfFrames
centroids(k) = .......
diameters(k) = ......
end
csvwrite(centroidFileName, centroids);
csvwrite(diameterFileName, diameters);
I'm assuming you already have your lists of data, centroids and diameters.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Large Files and Big Data についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!