Export Data from Matlab to Text Files
古いコメントを表示
Hello
Working on a segmentation of 3D CT images.
I want to know Please
- what's the best software for 3D visualization for these images
- How to save these images (3D matrix 1536x1536x1101) into a file .txt
Does this code is the best to save it
if true
fid=fopen('data.txt','wt');
fprintf(fid,'%d %d %d\n',Matrix3D);
fclose(fid);
end
Please if you have any idea let me know.
Thank you
3 件のコメント
dpb
2014 年 7 月 7 日
...these images (3D matrix 1536x1536x1101) into a file .txt
Why would you even think of saving image files as text? Use an appropriate image format or if staying in Matlab maybe a .mat or even stream via fwrite but NOT ASCII.
Haykel
2014 年 7 月 8 日
dpb
2014 年 7 月 9 日
no, No, NO, NO, NO!!!!
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で DICOM Format についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!