From: mat001 on
Can someone explain me how to get 2d image like images out of 3d volume.

XY plane image
YZ plane
ZX plane image

Thanks
From: us on
"mat001 " <dres01(a)lycos.com> wrote in message <hoak29$jkp$1(a)fred.mathworks.com>...
> Can someone explain me how to get 2d image like images out of 3d volume.
>
> XY plane image
> YZ plane
> ZX plane image
>
> Thanks

a hint:
- you'll find some good pointers here

http://www.mathworks.com/access/helpdesk/help/techdoc/visualize/f5-6010.html

us
From: Matt J on
"mat001 " <dres01(a)lycos.com> wrote in message <hoak29$jkp$1(a)fred.mathworks.com>...
> Can someone explain me how to get 2d image like images out of 3d volume.
>
> XY plane image
> YZ plane
> ZX plane image
===============

This requires some guessing on our part about where you like to put your axes, but here's a possible example


M=rand(100,100,100); %A 3D volume M(x,y,z)

xy_plane=M(:,:,i);
xz_plane=squeze(M(:,j,:));
yz_plane=squeeze(M(k,:,:));
From: mat001 on
"Matt J " <mattjacREMOVE(a)THISieee.spam> wrote in message <hoaksj$541$1(a)fred.mathworks.com>...
> "mat001 " <dres01(a)lycos.com> wrote in message <hoak29$jkp$1(a)fred.mathworks.com>...
> > Can someone explain me how to get 2d image like images out of 3d volume.
> >
> > XY plane image
> > YZ plane
> > ZX plane image
> ===============
>
> This requires some guessing on our part about where you like to put your axes, but here's a possible example
>
>
> M=rand(100,100,100); %A 3D volume M(x,y,z)
>
> xy_plane=M(:,:,i);
> xz_plane=squeze(M(:,j,:));
> yz_plane=squeeze(M(k,:,:));

I did not undersatnd your little code :(
From: mat001 on
"Matt J " <mattjacREMOVE(a)THISieee.spam> wrote in message <hoaksj$541$1(a)fred.mathworks.com>...
> "mat001 " <dres01(a)lycos.com> wrote in message <hoak29$jkp$1(a)fred.mathworks.com>...
> > Can someone explain me how to get 2d image like images out of 3d volume.
> >
> > XY plane image
> > YZ plane
> > ZX plane image
> ===============
>
> This requires some guessing on our part about where you like to put your axes, but here's a possible example
>
>
> M=rand(100,100,100); %A 3D volume M(x,y,z)
>
> xy_plane=M(:,:,i);
> xz_plane=squeze(M(:,j,:));
> yz_plane=squeeze(M(k,:,:));


I understand what you mean. Now i am trying some test. I will let u know my progress