Create a .mat file similar to MRI

5 Ansichten (letzte 30 Tage)
Christopher P.
Christopher P. am 5 Mai 2013
Beantwortet: bintoro adi am 2 Dez. 2014
Hello,
Does anyone know how to place 12 mri images into the same matrix size and shape as D in the .mat file MRI?
Any help is greatly appreciated.
-Thanks

Antworten (2)

Youssef  Khmou
Youssef Khmou am 6 Mai 2013
Bearbeitet: Youssef Khmou am 6 Mai 2013
hi,
The default MRI sample has singleton dimension right?
try :
% given I1,.............,I12
[m n]=size(I1);
M=zeros(m,n,12);
M(:,:,1)=I1;
%....
M(:,:,12)=I12;
D=zeros(m,n,1,12);
for n=1:12
D(:,:,:,n)=M(:,:,n);
end
save Neoplasm_MRI D
  10 Kommentare
Youssef  Khmou
Youssef Khmou am 6 Mai 2013
well thats where the problem then, you have to solutions : 1) transform them into grayscale images using
rgb2gray
2)or add a 4th/5th dimention in M/D:
M=zeros(m,n,3,1,12) ;
% in the code use M(:,:,:,:,n)
Christopher P.
Christopher P. am 6 Mai 2013
Got it working.
Thank you so much for you help.
It's greatly appreciated.

Melden Sie sich an, um zu kommentieren.


bintoro adi
bintoro adi am 2 Dez. 2014
Hi Christoper, Can u write the final code, because i still have the the same error (Subscripted assignment dimension mismatch). thank u...

Kategorien

Mehr zu Neuroimaging finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by