Back to the main page.

Bug 3293 - ft_estimate_units estimates units of iEEG electrodes incorrectly

Status CLOSED FIXED
Reported 2017-05-02 20:02:00 +0200
Modified 2019-08-10 12:41:01 +0200
Product: FieldTrip
Component: forward
Version: unspecified
Hardware: PC
Operating System: Mac OS
Importance: P5 normal
Assigned to: Robert Oostenveld
URL:
Tags:
Depends on:
Blocks:
See also:

Arjen Stolk - 2017-05-02 20:02:55 +0200

load('SubjectUCI29_elec_tal_f.mat') cfg = []; cfg.channel = {'RAM*', 'RTH*', 'RHH*'}; % right hemisphere electrodes elec = ft_selectdata(cfg, elec_tal_f); ft_estimate_units(range(elec.elecpos)) ans = cm whereas the electrodes are in mm. it can be solved in higher-level functions, e.g. ft_estimate_units(range(elec.elecpos)*2) ans = mm but that's far from idea since any call to ft_checkdata with hasunit will still return cm thus ideally ft_estimate_units is adjusted to accommodate iEEG inter-electrode spacings


Arjen Stolk - 2017-05-02 20:04:36 +0200

note to myself: if this is fixed, we should re-adjust line 87 in ft_plot_cloud: posunit = ft_estimate_units(range(pos).*2); % FIXME times 2 otherwise this fails for single/few points


Robert Oostenveld - 2017-05-04 11:15:12 +0200

I don't think you should blame ft_estimate_units, but rather the code that generated the elec structure but failed to add the elec.unit field to it. Ah, I see that you are using ft_selectdata. That function is meant for data that can be described with a dimord. It should error with elec as input.


Robert Oostenveld - 2017-05-04 11:27:33 +0200

mac011> git commit [bug3293 6efed5a] give error on incorrect input, see http://bugzilla.fieldtriptoolbox.org/show_bug.cgi?id=3293 2 files changed, 7 insertions(+), 1 deletion(-)


Arjen Stolk - 2017-05-04 18:44:57 +0200

I pulled your changes, but the issue might still be related to ft_estimate_units not knowing how to deal with a few iEEG depth arrays. debug @line264 functional = ft_checkdata(functional, 'datatype', {'source', 'volume'}, 'feedback', 'yes', 'hasunit', 'yes'); functional = label: {21x1 cell} <- not these only are {'RAM*', 'RTH*', 'RHH*'} freq: 110.1471 time: 0.4000 elec: [1x1 struct] powspctrm: [21x1 double] cfg: [1x1 struct] dimord: 'chan_freq_time' functional.elec ans = cfg: [1x1 struct] chanpos: [145x3 double] chanposold: [145x3 double] chantype: {145x1 cell} chanunit: {145x1 cell} coordsys: 'tal' elecpos: [152x3 double] label: {145x1 cell} labelold: {152x1 cell} unit: 'mm' then after executing the line with ft_checkdata: the input is freq data with 21 channels, 1 frequencybins and 1 timebins functional = pos: [21x3 double] powspctrm: [21x1 double] powspctrmdimord: 'pos_freq_time' freq: 110.1471 time: 0.4000 inside: [21x1 logical] unit: 'cm' ft_sourceplot line 594: data = ft_convert_units(data); then ft_convert_units calls ft_estimate_units, where the data is mistaken to be of cm units


Arjen Stolk - 2017-05-04 18:49:03 +0200

full test script: load('SubjectUCI29_freq.mat'); fsmri_tal = ft_read_mri('freesurfer/mri/T1.mgz'); crtx_mesh_sm_rh = ft_read_headshape('freesurfer/surf/rh.pial'); cfg = []; cfg.baseline = [-.3 -.1]; cfg.baselinetype = 'relchange'; freq_blc = ft_freqbaseline(cfg, freq); cfg = []; cfg.frequency = [70 150]; cfg.avgoverfreq = 'yes'; cfg.latency = [0 0.8]; cfg.avgovertime = 'yes'; cfg.channel = {'RAM*', 'RTH*', 'RHH*'}; % right hemisphere electrodes hgb_blc = ft_selectdata(cfg, freq_blc); atlas = ft_read_atlas('freesurfer/mri/aparc+aseg.mgz'); atlas.coordsys = 'tal'; cfg = []; cfg.inputcoord = 'tal'; cfg.atlas = atlas; cfg.roi = 'Right-Hippocampus'; hipp_msk_rh = ft_volumelookup(cfg, atlas); seg = keepfields(atlas, {'dim', 'unit','coordsys','transform'}); cfg = []; cfg.method = 'iso2mesh'; cfg.numvertices = 10000; cfg.radbound = 2; cfg.maxsurf = 0; cfg.tissue = 'brain'; cfg.smooth = 20; seg.brain = hipp_msk_rh; hipp_mesh_sm_rh = ft_prepare_mesh(cfg, seg); % plot 3d hippocampus and brain with data cfg = []; cfg.funparameter = 'powspctrm'; cfg.funcolorlim = [-.5 .5]; cfg.method = 'cloud'; cfg.radius = 5; cfg.colorbar = 'no'; cfg.colorgrad = 'white'; cfg.facecolor = 'cortex_light'; cfg.facealpha = [.05 .25 .25]; cfg.ptdensity = 30; % default = 20 ft_sourceplot(cfg, hgb_blc, hipp_mesh_sm_rh); view([120 40]); %view([180 -90]); camlight >> plots as if all electrodes are on IN each other, and not around the hippocampus (forcing mm units will fix it)


Arjen Stolk - 2017-05-06 19:05:42 +0200

(In reply to Robert Oostenveld from comment #2) In the current iEEG pipeline, the following is a crucial step: cfg = []; cfg.channel = {'RAM*', 'RHH*', 'RTH*', 'ROC*', 'LAM*', 'LHH*', 'LTH*'}; seeg = ft_selectdata(cfg, elec_tal_f); in order to later concatenate seeg with grid elec structures. The context: grids = {'LPG*', 'LTG*'}; for g = 1:numel(grids) cfg = []; cfg.channel = grids{g}; cfg.elec = elec_tal_f; cfg.method = 'headshape'; cfg.headshape = mesh; cfg.warp = 'dykstra2012'; ecog{g} = ft_electroderealign(cfg); end cfg = []; cfg.channel = {'RAM*', 'RHH*', 'RTH*', 'ROC*', 'LAM*', 'LHH*', 'LTH*'}; % FIXME: no longer works seeg = ft_selectdata(cfg, elec_tal_f); elec_tal_fr = ft_appendsens([], seeg, ecog{:}); > should there be a separate ft_selectsens function, just like there's an ft_appendsens?


Arjen Stolk - 2017-05-09 02:23:39 +0200

To recapitulate, this bug is now two-fold 1) ft_estimate_units thinks a subset of iEEG electrodes with distance in mm are cm. The ft_selectdata example code above was a quick way to replicate this first issue, but has brought about a second issue: 2) ft_selectdata is not supposed to be used for descriptives such as elec in the first place (despite that selecting channels works), and a substitute may need to thought of. Perhaps JM (CC) would like to chime on this one too.


Jan-Mathijs Schoffelen - 2017-05-09 08:39:16 +0200

(In reply to Arjen Stolk from comment #7) @1: I haven't looked at ft_estimate_units for a while, but I think that the heuristic of assuming the electrodes spanning something the size of a human head (which works well for extracranial electrodes) does not work well for intracranial electrodes. Perhaps you could think of a heuristic in case the input elec is detected to be intracranial @2: One possible way forward could be to use ft_apply_montage for this. chanlist = {'somechannelsdefinedhere'}; keepchan = match_str(elec.label, chanlist); montage.tra = eye(numel(elec.label)); montage.labelnew = elec.label(keepchan); montage.labelold = elec.label; montage.tra(setdiff(1:numel(elec.label)),keepchan),:) = []; elec = ft_apply_montage(montage,elec,'keepunused','no');


Robert Oostenveld - 2017-05-09 10:24:42 +0200

(In reply to Jan-Mathijs Schoffelen from comment #8) ft_estimate_units is only called when the units are not known. It uses heuristics. Rather than changing the heuristics, more appropriate is to prevent it from being called. Does ft_electrodeplacement assign the correct units to its output? Are there FT functions that drop the unit field?


Robert Oostenveld - 2017-05-09 12:40:01 +0200

(In reply to Robert Oostenveld from comment #9) Oh, to reply to my own "Are there FT functions that drop the unit field?" I now realize that Arjen was using ft_selectdata to select electrodes. That function was not designed for electrodes and as of last week will give an error on elec input. So it seems to me that the problem is resolved.


Arjen Stolk - 2017-05-09 17:36:25 +0200

(In reply to Robert Oostenveld from comment #10) Actually, the unit issue is still there when plotting a bunch of depth electrodes (will make a screenshot later). One solution would be to change the range that determines its mm vs. cm, but not sure what it based was on in the first place. And, yeah, using ft_apply_montage to select a subset in an elec structure would work, but is not very elegant. :)


Arjen Stolk - 2017-05-09 19:36:21 +0200

Created attachment 838 ft_sourceplot (depth elecs) left: current ft right: after manually changing functional.unit from cm to mm, at line 264 (ft_checkdata)


Arjen Stolk - 2017-05-09 19:48:58 +0200

and note that before line 264 (functional = ft_checkdata(functional, 'datatype', {'source', 'volume'}, 'feedback', 'yes', 'hasunit', 'yes');): functional.elec ans = cfg: [1x1 struct] chanpos: [145x3 double] chanposold: [145x3 double] chantype: {145x1 cell} chanunit: {145x1 cell} coordsys: 'tal' elecpos: [152x3 double] label: {145x1 cell} labelold: {152x1 cell} unit: 'mm' which reaches the following line 592 in ft_checkdata: if istrue(hasunit) && ~isfield(data, 'unit') and of data, aka functional, doesnt have a unit field, which triggers a chain of checks and balances downstream ultimately leading to a change to 'cm' units solution 1: change line 592 of ft_checkdata into if istrue(hasunit) && (~isfield(data, 'unit') || ~isfield(data.elec, 'unit')) solution 2: adjust line 44 of ft_estimate_units est = log10(size)+1.8; into say est = log10(size)+2.5 so est is 3.9669 instead of 3.2669, and reaches the 4th index of unit = {'m', 'dm', 'cm', 'mm'}; in stead of the 3rd. but then again, I have no idea what the current algorithmic determination is based on


Arjen Stolk - 2017-05-10 02:08:03 +0200

Per the issue regarding ft_selectdata, I'm proposing to add a 'keepunused' option to ft_electroderealign. That way, selecting unused data in the original elec file for appending with the realigned elec grids is no longer necessary (avoiding calls to ft_selectdata/ft_apply_montage and ft_appendsens). For instance, elec_tal_fr = elec_tal_f; grids = {'LPG*', 'LTG*'}; for g = 1:numel(grids) cfg = []; cfg.channel = grids{g}; cfg.keepunused = 'yes'; % <- cfg.elec = elec_tal_fr; cfg.method = 'headshape'; cfg.headshape = mesh; cfg.warp = 'dykstra2012'; elec_tal_fr = ft_electroderealign(cfg); end The implementation with test script: https://github.com/fieldtrip/fieldtrip/pull/431


Arjen Stolk - 2017-05-10 03:01:44 +0200

Lastly, per the unit issue, see https://github.com/fieldtrip/fieldtrip/pull/432 ..proposing to have chan2source, in ft_checkdata, to also copy over elec.unit (besides elec.chanpos). this prevents misestimation of units, as was the case with the relatively rare iEEG situation.


Robert Oostenveld - 2017-05-10 08:39:57 +0200

this is a blur of proposed solutions, whereas the actual problem is ill defined. problem 1) - ft_estimate_units is not smart enough solution 1) - make sure it does not get called, i.e. ensure units is added and kept problem 2) - ft_selectdata does not work properly on elec solution 2) - don't call in on elec (which is not data, i.e. it does not have a dimord) I suspect that the actual problem has to do with you not being able to get the figure that you expect/want. Please describe the data (input) and figure (output) and in what aspect the output does not correctly represent the input. ...and please postpone proposing solutions unless it is clear what they solve.


Arjen Stolk - 2017-05-10 08:56:11 +0200

Your solution 1 and 2 are exactly what those pr's entailed. Chan2source adds the pos units, avoiding a call to ft estimate units. And ft selectdata is no longer used/needed with the keepchannels option in ft electroderealign. Welterusten


Robert Oostenveld - 2017-05-10 09:27:05 +0200

(In reply to Arjen Stolk from comment #17) but solution 2 implies that ft_selectdata does not get called, hence does not need any change


Robert Oostenveld - 2017-05-10 10:36:13 +0200

I have merged https://github.com/fieldtrip/fieldtrip/pull/432


Arjen Stolk - 2017-05-10 22:05:16 +0200

the issue has been avoided, so considering this bug fixed for the moment. at some point ft_estimate_units may need some re-thinking to incorporate idiosyncratic iEEG cases


Robert Oostenveld - 2019-08-10 12:34:50 +0200

This closes a whole series of bugs that have been resolved (either FIXED/WONTFIX/INVALID) for quite some time. If you disagree, please file a new issue on https://github.com/fieldtrip/fieldtrip/issues.


Robert Oostenveld - 2019-08-10 12:41:01 +0200

This closes a whole series of bugs that have been resolved (either FIXED/WONTFIX/INVALID) for quite some time. If you disagree, please file a new issue on https://github.com/fieldtrip/fieldtrip/issues.