How to view image from .MAT file

8 vues (au cours des 30 derniers jours)
Max Walliam
Max Walliam le 21 Oct 2021
Réponse apportée : Chunru le 21 Oct 2021
This brain tumor dataset containing 3064 T1-weighted contrast-inhanced images from 233 patients with three kinds of brain tumor: meningioma (708 slices), glioma (1426 slices), and pituitary tumor (930 slices).
This data is organized in matlab data format (.mat file). Each file stores a struct
How can i read this file and save it as jpg i have aattached one of the .mat file

Réponse acceptée

Chunru
Chunru le 21 Oct 2021
x = load("1.mat");
x.cjdata
ans = struct with fields:
label: 1 PID: '100360' image: [512×512 int16] tumorBorder: [38×1 double] tumorMask: [512×512 logical]
figure(1); imagesc(x.cjdata.image); axis image
saveas(gcf, 'a.jpg');
figure(2); imagesc(x.cjdata.tumorMask); axis image
saveas(gcf, 'b.jpg');
figure(3); plot(x.cjdata.tumorBorder); % what is this data?
dir
. .. 1.mat a.jpg b.jpg

Plus de réponses (0)

Catégories

En savoir plus sur Convert Image Type dans Help Center et File Exchange

Produits


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by