I have a .mat file. i want to reconstruct an image from that file. The .mat file contains data of a sinogram.

4 次查看(过去 30 天)
I have a .mat file. I need to reconstruct the data from the .mat file.

回答(1 个)

Pratik
Pratik 2024-12-17
Hi Preethi,
To reconstruct image from the .mat file, first load the mat file in the workspace and then display image using imshow function.
Please refer to the following code snippet:
ds=load("path/to/file");
img=ds.sinogram; % load image data
imshow(img); %display image

类别

Help CenterFile Exchange 中查找有关 Medical Physics 的更多信息

产品


版本

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by