how can I use montage to display 3d medical images (array) ?

4 Ansichten (letzte 30 Tage)
ROY EL ZEGHONDI
ROY EL ZEGHONDI am 14 Okt. 2017
Kommentiert: ROY EL ZEGHONDI am 16 Okt. 2017
Im new to image processing and its been a long time I havent used Matlab. basically i created an array (ct1) that includes 364 medical images (512x512x364 int16). I want to use montage to display all images without specifying sizes directly. What I mean is I want to do a montage command that automatically gets the sizes and so on. how do I do that using the montage command as I couldnt find a enough info for the montage command. I was thinking of something similar to:
Montage (reshape (unit16 (ct1), [size, (ct1,1), size (ct1,2),1,size (ct1,3)),'displayRange' , [])
Im getting this error:
Error: Expression or statement is incorrect--possibly unbalanced (, {, or [
I tried playing around with this but its always giving me the same error, and I think im missing something with the format of the montage command and as I said I cant find enough help with the help or online. I appreciate the help, thank you
  1 Kommentar
ROY EL ZEGHONDI
ROY EL ZEGHONDI am 15 Okt. 2017
ct1 contains the 364 images and is 512x512x364 int16. I tried using the command below but it gave me this error:
montage (reshape (unit16 (ct1), [size (ct1,1),size (ct1,2),size (ct1,3)])); montage (reshape (unit16 (ct1), [size (ct1,1),size (ct1,2),size (ct1,3)]));
|
Error: Expression or statement is incorrect--possibly unbalanced (, {, or [.
can I pls get help why this error is occuring

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

KSSV
KSSV am 16 Okt. 2017
montage(reshape(ct1,[size(ct1,1),size(ct1,2),1,size(ct1,3)]),'displayRange' , [])
  3 Kommentare
KSSV
KSSV am 16 Okt. 2017
Thank you is accepting the answer.....:)
ROY EL ZEGHONDI
ROY EL ZEGHONDI am 16 Okt. 2017
just did. sry im new here

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Lighting, Transparency, and Shading 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