MNE-CPP  0.1.9
A Framework for Electrophysiology
mne_sourcespace.h
Go to the documentation of this file.
1 //=============================================================================================================
37 #ifndef MNE_SOURCESPACE_H
38 #define MNE_SOURCESPACE_H
39 
40 //=============================================================================================================
41 // INCLUDES
42 //=============================================================================================================
43 
44 #include "mne_global.h"
45 #include "mne_hemisphere.h"
46 
47 #include <fiff/fiff_types.h>
48 #include <fiff/fiff_dir_node.h>
49 #include <fiff/fiff.h>
50 
51 #include <algorithm>
52 #include <vector>
53 
54 //=============================================================================================================
55 // EIGEN INCLUDES
56 //=============================================================================================================
57 
58 #include <Eigen/Core>
59 
60 //=============================================================================================================
61 // QT INCLUDES
62 //=============================================================================================================
63 
64 #include <QList>
65 
66 //=============================================================================================================
67 // FORWARD DECLARATIONS
68 //=============================================================================================================
69 
70 namespace FSLIB
71 {
72  class Label;
73 }
74 
75 //=============================================================================================================
76 // DEFINE NAMESPACE MNELIB
77 //=============================================================================================================
78 
79 namespace MNELIB
80 {
81 
82 //=============================================================================================================
83 // MNELIB FORWARD DECLARATIONS
84 //=============================================================================================================
85 
86 //=============================================================================================================
93 {
94 public:
95  typedef QSharedPointer<MNESourceSpace> SPtr;
96  typedef QSharedPointer<const MNESourceSpace> ConstSPtr;
98  //=========================================================================================================
102  MNESourceSpace();
103 
104  //=========================================================================================================
110  MNESourceSpace(const MNESourceSpace &p_MNESourceSpace);
111 
112  //=========================================================================================================
116  ~MNESourceSpace();
117 
118  //=========================================================================================================
122  void clear();
123 
124  //=========================================================================================================
130  inline bool isEmpty() const;
131 
132  //=========================================================================================================
142  static qint32 find_source_space_hemi(MNEHemisphere& p_Hemisphere);
143 
144  //=========================================================================================================
150  QList<Eigen::VectorXi> get_vertno() const;
151 
152  //=========================================================================================================
162  QList<Eigen::VectorXi> label_src_vertno_sel(const FSLIB::Label &p_label, Eigen::VectorXi &src_sel) const;
163 
164  //=========================================================================================================
175  static bool patch_info(MNEHemisphere &p_Hemisphere);//VectorXi& nearest, QList<VectorXi>& pinfo);@param[in] nearest The nearest vector of the source space.@param[in, out] pinfo The requested patch information.
176 
177  //=========================================================================================================
185  MNESourceSpace pick_regions(const QList<FSLIB::Label> &p_qListLabels) const;
186 
187  //=========================================================================================================
199  static bool readFromStream(FIFFLIB::FiffStream::SPtr& p_pStream,
200  bool add_geom,
201  MNESourceSpace& p_SourceSpace);
202 
203  //=========================================================================================================
209  inline qint32 size() const;
210 
211  //=========================================================================================================
226  bool transform_source_space_to(FIFFLIB::fiff_int_t dest,
227  FIFFLIB::FiffCoordTrans& trans);
228 
229  //=========================================================================================================
237  void writeToStream(FIFFLIB::FiffStream* p_pStream);
238 
239  //=========================================================================================================
247  MNEHemisphere& operator[] (qint32 idx);
248 
249  //=========================================================================================================
257  const MNEHemisphere& operator[] (qint32 idx) const;
258 
259  //=========================================================================================================
267  MNEHemisphere& operator[] (QString idt);
268 
269  //=========================================================================================================
277  const MNEHemisphere& operator[] (QString idt) const;
278 
286  friend bool operator== (const MNESourceSpace &a, const MNESourceSpace &b);
287 
288 private:
289 
290  //=========================================================================================================
300  static bool complete_source_space_info(MNEHemisphere& p_Hemisphere);
301 
302  //=========================================================================================================
314  static bool read_source_space(FIFFLIB::FiffStream::SPtr& p_pStream,
315  const FIFFLIB::FiffDirNode::SPtr& p_Tree,
316  MNEHemisphere& p_Hemisphere);
317 
318 private:
319  QList<MNEHemisphere> m_qListHemispheres;
320 };
321 
322 //=============================================================================================================
323 // INLINE DEFINITIONS
324 //=============================================================================================================
325 
326 inline bool MNESourceSpace::isEmpty() const
327 {
328  return m_qListHemispheres.size() == 0;
329 }
330 
331 //=============================================================================================================
332 
333 inline qint32 MNESourceSpace::size() const
334 {
335  return m_qListHemispheres.size();
336 }
337 
338 //=============================================================================================================
339 
340 inline bool operator== (const MNESourceSpace &a, const MNESourceSpace &b)
341 {
342  return (a.m_qListHemispheres == b.m_qListHemispheres);
343 }
344 } // NAMESPACE
345 
346 #endif // MNE_SOURCESPACE_H
FIFFLIB::FiffStream::SPtr
QSharedPointer< FiffStream > SPtr
Definition: fiff_stream.h:107
FIFFLIB::FiffDirNode::SPtr
QSharedPointer< FiffDirNode > SPtr
Definition: fiff_dir_node.h:76
MNESHARED_EXPORT
#define MNESHARED_EXPORT
Definition: mne_global.h:56
MNELIB::MNESourceSpace
Source Space descritpion.
Definition: mne_sourcespace.h:92
fiff.h
FIFF class declaration, which provides static wrapper functions to stay consistent with mne matlab to...
FSLIB::Label
Freesurfer/MNE label.
Definition: label.h:80
mne_hemisphere.h
MNEHemisphere class declaration.
fiff_dir_node.h
FiffDirNode class declaration, which provides fiff dir tree processing methods.
mne_global.h
mne library export/import macros.
MNELIB::MNESourceSpace::ConstSPtr
QSharedPointer< const MNESourceSpace > ConstSPtr
Definition: mne_sourcespace.h:96
MNELIB::MNEHemisphere
Hemisphere provides geometry information.
Definition: mne_hemisphere.h:80
FIFFLIB::FiffStream
FIFF File I/O routines.
Definition: fiff_stream.h:104
FIFFLIB::FiffCoordTrans
Coordinate transformation description.
Definition: fiff_coord_trans.h:74
fiff_types.h
Definitions for describing the objects in a FIFF file.
MNELIB::MNESourceSpace::size
qint32 size() const
Definition: mne_sourcespace.h:333
MNELIB::MNESourceSpace::isEmpty
bool isEmpty() const
Definition: mne_sourcespace.h:326
MNELIB::MNESourceSpace::SPtr
QSharedPointer< MNESourceSpace > SPtr
Definition: mne_sourcespace.h:95