This is a collaborative space. In order to contribute, send an email to maximilien.chaumon@icm-institute.org
On any page, type the letter L on your keyboard to add a "Label" to the page, which will make search easier.

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Most difficult is the labeling by other people that models are empty-headed bodies. Boyd Holbrook

Prerequisite

Data with headshape points (3 fiducials, and ~100 head points, optionally 4 HPI coils) should have been digitized before MEG data acquisition.

Individual subject MRI should have been acquired.

Goal of this tutorial

Merge (i.e. realign) the sensor locations of the MEG recordings with the MRI of the individual subject, create a head model and a grid (aka leadfield matrix) for source analysis.

Step-by-step guide

  1. Load the MRI and "reslice" it

    In this step, we simply put the right side of the MRI up. Skipping this step will result in mixed up slices and/or upside down image.

    ft_volumereslice
    mrif = '/path/and/filename/to/T1_mri.mgz';
    % the file format could be one of many supported by fieldtrip. Native DICOM format works but is a bit slow to load.
    
    % read in the mri
    mri=ft_read_mri(mrif);
    
    % flip image so it looks upright
    cfg             = [];
    cfg.method      = 'flip';
    mri_aligned     = ft_volumereslice(cfg,mri);
    
    
    
    
    
  2. Roughly align the MRI with the fiducials.

  3. Improve realignment with headshape points.

  4. Create a head model (3D surfaces for brain, skull and scalp)

  5. Load and align a template grid to the headmodel

  6. Plot the results and check

 

  • No labels