MNE-CPP
0.1.9
A Framework for Electrophysiology
|
Inverse algorithm interface. More...
#include <IInverseAlgorithm.h>
Public Member Functions | |
virtual | ~IInverseAlgorithm () |
virtual MNELIB::MNESourceEstimate | calculateInverse (const FIFFLIB::FiffEvoked &p_fiffEvoked, bool pick_normal=false)=0 |
virtual MNELIB::MNESourceEstimate | calculateInverse (const Eigen::MatrixXd &data, float tmin, float tstep, bool pick_normal=false) const =0 |
virtual const char * | getName () const =0 |
virtual const MNELIB::MNESourceSpace & | getSourceSpace () const =0 |
Inverse algorithm interface.
Inverse algorithm interface for inverse routines of MNE-CPP
Definition at line 78 of file IInverseAlgorithm.h.
|
inlinevirtual |
Destroys the IInverseAlgorithm.
Definition at line 85 of file IInverseAlgorithm.h.
|
pure virtual |
Applies the inverse algorithm to input data and returns a source estimate.
[in] | p_fiffEvoked | Evoked data. |
[in] | tmin | Minimal time point. |
[in] | tmin | Time between two samples. |
[in] | pick_normal | If True, rather than pooling the orientations by taking the norm, only the. radial component is kept. This is only applied when working with loose orientations. |
Implemented in INVERSELIB::RapMusic, and INVERSELIB::MinimumNorm.
|
pure virtual |
Applies the inverse algorithm to input data and returns a source estimate.
[in] | p_fiffEvoked | Evoked data. |
[in] | pick_normal | If True, rather than pooling the orientations by taking the norm, only the. radial component is kept. This is only applied when working with loose orientations. |
Implemented in INVERSELIB::RapMusic, INVERSELIB::PwlRapMusic, and INVERSELIB::MinimumNorm.
|
pure virtual |
Returns the algorithm name
Implemented in INVERSELIB::RapMusic, INVERSELIB::PwlRapMusic, and INVERSELIB::MinimumNorm.
|
pure virtual |
Returns the current mne source space on which the inverse algorithm is performing on. Either from inverse operator (minimum norm estimate), or from forward solution (beamformers)
Implemented in INVERSELIB::RapMusic, and INVERSELIB::MinimumNorm.