I have a .mat file. i want to reconstruct an image from that file. The .mat file contains data of a sinogram.
3 ビュー (過去 30 日間)
古いコメントを表示
I have a .mat file. I need to reconstruct the data from the .mat file.
0 件のコメント
回答 (1 件)
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
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!