v2.0.0
Loading...
Searching...
No Matches
mne_source_space.h
Go to the documentation of this file.
1//=============================================================================================================
22
23#ifndef MNESOURCESPACE_H
24#define MNESOURCESPACE_H
25
26//=============================================================================================================
27// INCLUDES
28//=============================================================================================================
29
30#include "mne_global.h"
32
33//=============================================================================================================
34// EIGEN INCLUDES
35//=============================================================================================================
36
37#include <Eigen/Core>
38
39//=============================================================================================================
40// STL INCLUDES
41//=============================================================================================================
42
43#include <memory>
44
45//=============================================================================================================
46// DEFINE NAMESPACE MNELIB
47//=============================================================================================================
48
49namespace MNELIB
50{
51
52//=============================================================================================================
53// FORWARD DECLARATIONS
54//=============================================================================================================
55
56class MNEHemisphere;
57
58//=============================================================================================================
65{
66public:
67 using SPtr = std::shared_ptr<MNESourceSpace>;
68 using ConstSPtr = std::shared_ptr<const MNESourceSpace>;
69 using UPtr = std::unique_ptr<MNESourceSpace>;
70
71 //=========================================================================================================
75 MNESourceSpace(int np = 0);
76
77 //=========================================================================================================
81 ~MNESourceSpace() override;
82
83 //=========================================================================================================
89 virtual MNESourceSpace::SPtr clone() const;
90
91 //=========================================================================================================
95 void enable_all_sources();
96
97 //=========================================================================================================
104 bool is_left_hemi() const;
105
106 //=========================================================================================================
113 qint32 find_source_space_hemi() const;
114
115 //=========================================================================================================
121 void update_inuse(Eigen::VectorXi new_inuse);
122
123 //=========================================================================================================
131
132 //=========================================================================================================
138 int add_patch_stats();
139
140 //=========================================================================================================
146
147 //=========================================================================================================
155 static std::unique_ptr<MNESourceSpace> create_source_space(int np);
156
157 //=========================================================================================================
165 static std::unique_ptr<MNESourceSpace> load_surface(const QString& surf_file,
166 const QString& curv_file);
167
168 //=========================================================================================================
178 static std::unique_ptr<MNESourceSpace> load_surface_geom(const QString& surf_file,
179 const QString& curv_file,
180 bool add_geometry,
181 bool check_too_many_neighbors);
182
183 //=========================================================================================================
198 float grid,
199 float exclude,
200 float mindist);
201
202 //=========================================================================================================
203 // Source-space filtering, I/O, and label helpers (moved from MNESurfaceOrVolume)
204 //=========================================================================================================
205
206 static int filter_source_spaces(const MNESurface& surf,
207 float limit,
208 const FIFFLIB::FiffCoordTrans& mri_head_t,
209 std::vector<std::unique_ptr<MNESourceSpace>>& spaces,
210 QTextStream *filtered);
211
212 static void filter_source_space(FilterThreadArg *arg);
213
214 static int filter_source_spaces(float limit,
215 const QString& bemfile,
216 const FIFFLIB::FiffCoordTrans& mri_head_t,
217 std::vector<std::unique_ptr<MNESourceSpace>>& spaces,
218 QTextStream *filtered,
219 bool use_threads);
220
221 static int read_source_spaces(const QString& name,
222 std::vector<std::unique_ptr<MNESourceSpace>>& spaces);
223
226 std::vector<std::unique_ptr<MNESourceSpace>>& spaces);
227
228 static int restrict_sources_to_labels(std::vector<std::unique_ptr<MNESourceSpace>>& spaces,
229 const QStringList& labels,
230 int nlabel);
231
232 static int read_label(const QString& label,
233 Eigen::VectorXi& sel);
234
235 //=========================================================================================================
244 int writeToStream(FIFFLIB::FiffStream::SPtr& stream, bool selected_only) const;
245
246 //=========================================================================================================
261 static MNEHemisphere icoDownsample(const MNEHemisphere& hemi, int icoGrade);
262
263private:
272 int writeVolumeInfo(FIFFLIB::FiffStream::SPtr& stream, bool selected_only) const;
273};
274
275//=============================================================================================================
276// INLINE DEFINITIONS
277//=============================================================================================================
278} // NAMESPACE MNELIB
279
280#endif // MNESOURCESPACE_H
Discriminated geometry container that can represent either a triangulated surface or a discrete/volum...
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).
Labelled 4x4 FIFF affine: source frame, destination frame, rotation, translation and cached inverse.
QSharedPointer< FiffStream > SPtr
Thread-local arguments for parallel raw data filtering (channel range, filter kernel,...
Hemisphere provides geometry information.
virtual MNESourceSpace::SPtr clone() const
std::unique_ptr< MNESourceSpace > UPtr
static std::unique_ptr< MNESourceSpace > load_surface(const QString &surf_file, const QString &curv_file)
qint32 find_source_space_hemi() const
std::shared_ptr< MNESourceSpace > SPtr
static int restrict_sources_to_labels(std::vector< std::unique_ptr< MNESourceSpace > > &spaces, const QStringList &labels, int nlabel)
static int filter_source_spaces(const MNESurface &surf, float limit, const FIFFLIB::FiffCoordTrans &mri_head_t, std::vector< std::unique_ptr< MNESourceSpace > > &spaces, QTextStream *filtered)
static int read_source_spaces(const QString &name, std::vector< std::unique_ptr< MNESourceSpace > > &spaces)
static std::unique_ptr< MNESourceSpace > create_source_space(int np)
static std::unique_ptr< MNESourceSpace > load_surface_geom(const QString &surf_file, const QString &curv_file, bool add_geometry, bool check_too_many_neighbors)
static MNEHemisphere icoDownsample(const MNEHemisphere &hemi, int icoGrade)
static void filter_source_space(FilterThreadArg *arg)
int writeToStream(FIFFLIB::FiffStream::SPtr &stream, bool selected_only) const
static MNESourceSpace * make_volume_source_space(const MNESurface &surf, float grid, float exclude, float mindist)
std::shared_ptr< const MNESourceSpace > ConstSPtr
int transform_source_space(const FIFFLIB::FiffCoordTrans &t)
static int read_label(const QString &label, Eigen::VectorXi &sel)
static int transform_source_spaces_to(int coord_frame, const FIFFLIB::FiffCoordTrans &t, std::vector< std::unique_ptr< MNESourceSpace > > &spaces)
void update_inuse(Eigen::VectorXi new_inuse)
Lightweight triangulated surface (vertices, triangles, normals).
Definition mne_surface.h:66
MNESurfaceOrVolume()
Constructs the MNE FsSurface or Volume.