v2.0.0
Loading...
Searching...
No Matches
mne_cortical_map.h
Go to the documentation of this file.
1//=============================================================================================================
18
19#ifndef MNE_CORTICAL_MAP_H
20#define MNE_CORTICAL_MAP_H
21
22//=============================================================================================================
23// INCLUDES
24//=============================================================================================================
25
26#include "mne_global.h"
27
28//=============================================================================================================
29// EIGEN INCLUDES
30//=============================================================================================================
31
32#include <Eigen/Core>
33
34//=============================================================================================================
35// FORWARD DECLARATIONS
36//=============================================================================================================
37
38namespace FIFFLIB {
39 class FiffInfo;
40}
41
42//=============================================================================================================
43// DEFINE NAMESPACE MNELIB
44//=============================================================================================================
45
46namespace MNELIB
47{
48
49//=============================================================================================================
50// FORWARD DECLARATIONS
51//=============================================================================================================
52
55
56//=============================================================================================================
66{
67public:
68 //=========================================================================================================
84 static Eigen::MatrixXd makeCorticalMap(
85 const MNEForwardSolution& fwd,
86 const MNEInverseOperator& inv,
87 const FIFFLIB::FiffInfo& info);
88
89 MNECorticalMap() = delete;
90};
91
92} // namespace MNELIB
93
94#endif // MNE_CORTICAL_MAP_H
MNELIB shared-library export/import macros and library build metadata.
#define MNESHARED_EXPORT
Definition mne_global.h:40
Core MNE data structures (source spaces, source estimates, hemispheres).
FIFF file I/O, in-memory data structures and high-level readers/writers.
Full FIFF measurement info: per-channel descriptors, sampling and filter setup, projectors,...
Definition fiff_info.h:88
static Eigen::MatrixXd makeCorticalMap(const MNEForwardSolution &fwd, const MNEInverseOperator &inv, const FIFFLIB::FiffInfo &info)
In-memory representation of an -fwd.fif forward solution.
MNE-style inverse operator.