How to read a .dat file and creat a 3D image

조회 수: 3 (최근 30일)
Fangzhou Wang
Fangzhou Wang 2016년 8월 12일
편집: Giao Vu 2019년 12월 3일
Hello there,
There's a .dat file in which the value at each voxel is 1 (solid) or 0 (pore). Dose anyone know how to import this .dat file into Matlab and creat a 3D image of porous media?
Thank you,
Rick

답변 (1개)

Giao Vu
Giao Vu 2019년 12월 3일
편집: Giao Vu 2019년 12월 3일
first u need to know:
  • how the data is stored (in 2D it is very straightforward, but not in 3D): is it slice by slice (which plane, xy,xz,or yz)
  • data type and format (binary, or integer?)
  • data size for each dimension x,y,z
fileid = fopen('mydata.dat','r');
data = fread(fileid, inf, 'single', 'ieee-be'); %read till the end of file
data = reshape(data,[dimx dimy dimz]); % reshape data

카테고리

Help CenterFile Exchange에서 Biomedical Imaging에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by