1 / 4

SENSE is simple!

SENSE is simple!. % load up data (coil maps in s1 & s2; images in im1 & im2) load sense_data.mat; %im is output matrix [Nx Ny]=size(im1); im=zeros(2*Nx,Ny); % SENSE (neglecting noise covariance) for x=1:Nx, dx=mod((x-1+Nx/2),Nx)+1; for y=1:Ny,

lixue
Télécharger la présentation

SENSE is simple!

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. SENSE is simple! % load up data (coil maps in s1 & s2; images in im1 & im2) load sense_data.mat; %im is output matrix [Nx Ny]=size(im1); im=zeros(2*Nx,Ny); % SENSE (neglecting noise covariance) for x=1:Nx, dx=mod((x-1+Nx/2),Nx)+1; for y=1:Ny, S=[s1(x,y) s1(x+Nx,y); s2(x,y) s2(x+Nx,y)]; d=[im1(dx,y); im2(dx,y)]; % SENSE inversion step m=pinv(S)*d; im(x,y)=m(1); im(x+Nx,y)=m(2); end; end;

  2. x x x x Basic SENSE x x Coil 1 Coil 2 SENSE reconstructed x x x x Image 1 Image 2

  3. Image Artifacts SENSE GRAPPA

  4. Reduced DistortionEPI, 128x256 Non-Accelerated GRAPPA, R=3

More Related