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
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
Haykel 2014년 7월 8일
Thankx for you comment. In fact I would to save these images files as text to use it in 3D visualization .
dpb
dpb 2014년 7월 9일
no, No, NO, NO, NO!!!!

댓글을 달려면 로그인하십시오.

 채택된 답변

Mads
Mads 2014년 7월 7일

0 개 추천

One usual format for medical images such as yours is DICOM. You can try and use the matlab functions for DICOM editing/storage etc. and then you might want to use Osirix for viewing or other 3D features. Fx segmentation...
Probably you got the CT data from DICOM? or what format was that?
Also check the programme ITK-Snap

댓글 수: 1

Haykel
Haykel 2014년 7월 8일
Thankx for your reply. I get CT data (.ISQ) from an external hard drive.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 DICOM Format에 대해 자세히 알아보기

질문:

2014년 7월 7일

댓글:

dpb
2014년 7월 9일

Community Treasure Hunt

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

Start Hunting!

Translated by