mne_bids.write_anat

mne_bids.write_anat(image, bids_path, raw=None, trans=None, landmarks=None, t1w=None, deface=False, overwrite=False, verbose=False)[source]

Put anatomical MRI data into a BIDS format.

Given an MRI scan, format and store the MR data according to BIDS in the correct location inside the specified mne_bids.BIDSPath. If a transformation matrix is supplied, this information will be stored in a sidecar JSON file.

Parameters
imagestr | pathlib.Path | nibabel image object

Path to an MRI scan (e.g. T1w) of the subject. Can be in any format readable by nibabel. Can also be a nibabel image object of an MRI scan. Will be written as a .nii.gz file.

bids_pathBIDSPath

The file to write. The mne_bids.BIDSPath instance passed here must have the root and subject attributes set. The suffix is assumed to be 'T1w' if not present. It can also be 'FLASH', for example, to indicate FLASH MRI.

rawinstance of mne.io.Raw | None

The raw data of subject corresponding to the MR scan in image. If None, trans has to be None as well

transinstance of mne.transforms.Transform | str | None

The transformation matrix from head to MRI coordinates. Can also be a string pointing to a .trans file containing the transformation matrix. If None, no sidecar JSON file will be created.

t1wstr | pathlib.Path | nibabel image object | None

This parameter is useful if image written is not already a T1 image. If the image written is to have a sidecar or be defaced, this can be done using raw, trans and t1w. The T1 must be passed here because the coregistration uses freesurfer surfaces which are in T1 space.

defacebool | dict

If False, no defacing is performed. If True, deface with default parameters. trans and raw must not be None if True. If dict, accepts the following keys:

  • inset: how far back in voxels to start defacing relative to the nasion (default 5)

  • theta: is the angle of the defacing shear in degrees relative to vertical (default 15).

landmarks: instance of DigMontage | str | None

The DigMontage or filepath to a DigMontage with landmarks that can be passed to provide information for defacing. Landmarks can be determined from the head model using mne coreg GUI, or they can be determined from the MRI using freeview.

overwritebool

Whether to overwrite existing files or data in files. Defaults to False. If overwrite is True, any existing files with the same BIDS parameters will be overwritten with the exception of the participants.tsv and scans.tsv files. For these files, parts of pre-existing data that match the current data will be replaced. If overwrite is False, no existing data will be overwritten or replaced.

verbosebool

If True, this will print a snippet of the sidecar files. If False, no content will be printed.

Returns
bids_pathBIDSPath

Path to the written MRI data.