nirs.core.Probe1020

Untitled

nirs.core.Probe1020

This data class stores the probe information
This is a 3D version of the probe
probe=nirs.core.Probe1020;
disp(probe);
Probe1020 with properties: optodes_registered: [] braindepth: 10 opticalproperties: [1×1 nirs.media.SpectralProp] defaultdrawfcn: [] headcircum: 525.3861 AP_arclength: 354.3530 LR_arclength: 327.0952 optodes: [0×6 table] link: [] srcPos: [] detPos: []
optodes : table of {Name, X,Y,Z,Type,Units}. Defines the position of the optodes and any additional fiducial markers
optodes_registered: 3D version of optodes
link: table specifiying the {source, detector, type, [shortseperation]} for each channel of NIRS data. This table must be the same height as the number of channels in the data variable (see nirs.core.Data)
srcPos: (Read only) retrieved from optodes
srcPos3D: (Read only) retrieved from optodes_registered
detPos: (Read only) retrieved from optodes.
detPos3D: (Read only) retrieved from optodes_registered
distances (Read only) Src-Det distances
types (Read only) list of unique types in the link table
headcircum: (Read only) calculated from the underlying mesh (in mm)
AP_arclength: (Read only) calculated from the underlying mesh (in mm). Distance Nasion – CZ – Inion
LR_arclength: (Read only) calculated from the underlying mesh (in mm). Distance LPA – CZ – RPA
defaultdrawfcn: default drawing behavior (see below)
braindepth: Used in image reconstruction
opticalproperties: Used in NIRS forward model

Example

raw = nirs.testing.simData_registered;
probe1020 = raw.probe;
disp(probe1020);
Probe1020 with properties: optodes_registered: [21×6 table] braindepth: 10 opticalproperties: [1×1 nirs.media.SpectralProp] defaultdrawfcn: ’10-20′ headcircum: 525.3861 AP_arclength: 354.3530 LR_arclength: 327.0952 srcPos3D: [9×3 double] detPos3D: [8×3 double] optodes: [21×6 table] link: [32×3 table] distances: [32×1 double] srcPos: [9×3 double] detPos: [8×3 double] types: [2×1 double]

This is how to draw a probe in 2D

figure;
probe1020.defaultdrawfcn=‘2D’;
probe1020.draw;

This is how to draw a probe in 10-20

figure;
probe1020.defaultdrawfcn=’10-20′;
probe1020.draw;

This is how to draw a probe in 3D

figure;
probe1020.defaultdrawfcn=‘3D mesh (frontal)’;
probe1020.draw;
Other drawing options
probe1020.defaultdrawfcn=‘?’;
Here are the options for drawing configurations {’10-20′ } {’10-20 mercator projection map’ } {’10-20 zoom’ } {’10-20 mercator with restricted view’ } {’10-20 map’ } {’10-20 mercator with underlain image’ } {’10-20 map zoom’ } {’10-20 mercator with underlain image’ } {’10-20 label’ } {’10-20 mercator projection map’ } {’10-20 map zoom label’ } {’10-20 mercator with underlain image’ } {’10-20 ball’ } {’10-20 with underlying circles for heat maps’ } {’10-20 ball zoom’ } {’10-20 with underlying circles for heat maps with restricted view’} {‘3D’ } {‘3D line drawing ‘ } {‘3D mesh’ } {‘3D line drawing overlain on mesh’ } {‘3D mesh (frontal)’ } {‘3D line drawing overlain on mesh’ } {‘3D mesh (left)’ } {‘3D line drawing overlain on mesh’ } {‘3D mesh (right)’ } {‘3D line drawing overlain on mesh’ } {‘3D mesh (superior)’ } {‘3D line drawing overlain on mesh’ } {‘3D mesh (top)’ } {‘3D line drawing overlain on mesh’ } {‘3D mesh (posterior)’ } {‘3D line drawing overlain on mesh’ } {‘3D mesh (occipital)’ } {‘3D line drawing overlain on mesh’ } {‘3D mesh (back)’ } {‘3D line drawing overlain on mesh’ } {‘3D mesh (inferior)’ } {‘3D line drawing overlain on mesh’ } {‘3D mesh (bottom)’ } {‘3D line drawing overlain on mesh’ } {‘3D ball’ } {‘3D ball and stick drawing overlain on mesh’ } {‘3D label’ } {‘3D line drawing ‘ } {‘3D label mesh’ } {‘3D line drawing overlain on mesh’ } {‘3D label mesh (frontal)’ } {‘3D line drawing overlain on mesh’ } {‘3D labelmesh (left)’ } {‘3D line drawing overlain on mesh’ } {‘3D label mesh (right)’ } {‘3D line drawing overlain on mesh’ } {‘3D label mesh (superior)’ } {‘3D line drawing overlain on mesh’ } {‘3D label mesh (top)’ } {‘3D line drawing overlain on mesh’ } {‘3D label mesh (posterior)’} {‘3D line drawing overlain on mesh’ } {‘3D label mesh (occipital)’} {‘3D line drawing overlain on mesh’ } {‘3D label mesh (back)’ } {‘3D line drawing overlain on mesh’ } {‘3D label mesh (inferior)’ } {‘3D line drawing overlain on mesh’ } {‘3D label mesh (bottom)’ } {‘3D line drawing overlain on mesh’ } {‘3D label ball’ } {‘3D ball and stick drawing overlain on mesh’ } {‘2D’ } {‘2D probe layout’ }
You can also turn off the visibility of the 3D fiducial markers using
and the transperency of the skin layers (0=clear; 0.5=50%; 1= fully opaque)
probe1020=probe1020.SetFiducials_Visibility(false);
probe1020=probe1020.SetFiducials_Visibility(0);
 
figure;
probe1020.defaultdrawfcn=‘3D mesh (frontal)’;
probe1020.draw;
The mesh is a stored (hidden field) that can be retrieved or set using
mesh = probe1020.getmesh;
probe1020=probe1020.set_mesh(mesh);