nibabel icon indicating copy to clipboard operation
nibabel copied to clipboard

Tools for multiple modality data

Open matthew-brett opened this issue 4 years ago • 3 comments

The basic experimental use case is that we have several simultaneous imaging measures, eg fmri eeg and breathing.

The first concern is to have a common container for neuroimaging data from different modalities.

The second one is to conveniently handle temporal synchronization between measures and then interpolation on the same temporal grid.

(Thomas Vincent)

matthew-brett avatar Jul 30 '20 15:07 matthew-brett

Has anyone checked MNE for functionality like this?

Can anyone give some detail on when one would resampling to the same grid? When would this make sense for modalities like FMRI and EEG, where the EEG is thousands of times better resolved in time?

matthew-brett avatar Jul 30 '20 15:07 matthew-brett

@matthew-brett MNE hands multivariate signals with regular and common sampling. Our internal data object is a numpy array

agramfort avatar Jul 30 '20 15:07 agramfort

When dealing with very different temporal resolution, resampling to the same grid is indeed not wanted but they should be at least aligned. A common case it to temporally locate an event from one modality and get aligned values in the other modality. It is quite trivial to handle at the low-level with custom numpy array indexing manipulation but maybe there could be more convenient higher-level tools.

For fMRI and NIRS, it makes more sense to resample on the same grid.

The spatial aspect is also important. I think the location of a measure as well as its spatial sensitivity should be better encoded. For instance with MRI, a 3D grid is assumed and the voxel is an implicit sensor locus with a sharp cube-shaped sensitivity volume. For NIRS and EEG, the sensitivity volume is larger and more diffuse. I think there may be some ground to model things in a common way. This would greatly ease multi-modal visualization I think.

thomas-vincent avatar Jul 30 '20 16:07 thomas-vincent