-
Notifications
You must be signed in to change notification settings - Fork 141
Expand file tree
/
Copy pathhpidataupdater.cpp
More file actions
219 lines (182 loc) · 8.75 KB
/
hpidataupdater.cpp
File metadata and controls
219 lines (182 loc) · 8.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
//=============================================================================================================
/**
* @file hpidataupdater.cpp
* @author Ruben Dörfel <doerfelruben@aol.com>
* @since 0.1.9
* @date December, 2021
*
* @section LICENSE
*
* Copyright (C) 2021, Ruben Dörfel. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that
* the following conditions are met:
* * Redistributions of source code must retain the above copyright notice, this list of conditions and the
* following disclaimer.
* * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and
* the following disclaimer in the documentation and/or other materials provided with the distribution.
* * Neither the name of MNE-CPP authors nor the names of its contributors may be used
* to endorse or promote products derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
*
* @brief HpiDataUpdater class definition.
*
*/
//=============================================================================================================
// INCLUDES
//=============================================================================================================
#include "hpidataupdater.h"
#include <fiff/fiff_ch_info.h>
#include <fiff/fiff_info.h>
#include <iostream>
//=============================================================================================================
// QT INCLUDES
//=============================================================================================================
//=============================================================================================================
// EIGEN INCLUDES
//=============================================================================================================
#include <Eigen/Dense>
//=============================================================================================================
// USED NAMESPACES
//=============================================================================================================
using namespace INVERSELIB;
using namespace FIFFLIB;
using namespace Eigen;
//=============================================================================================================
// DEFINE GLOBAL METHODS
//=============================================================================================================
//=============================================================================================================
// DEFINE MEMBER METHODS
//=============================================================================================================
//=============================================================================================================
HpiDataUpdater::HpiDataUpdater(const FiffInfo::SPtr pFiffInfo)
: m_sensors(SensorSet())
{
updateBadChannels(pFiffInfo);
updateChannels(pFiffInfo);
updateHpiDigitizer(pFiffInfo->dig);
updateSensors(m_lChannels);
}
//=============================================================================================================
void HpiDataUpdater::updateBadChannels(FiffInfo::SPtr pFiffInfo)
{
m_lBads = pFiffInfo->bads;
}
//=============================================================================================================
void HpiDataUpdater::updateChannels(FiffInfo::SPtr pFiffInfo)
{
// Get the indices of inner layer channels and exclude bad channels and create channellist
const int iNumCh = pFiffInfo->nchan;
m_lChannels.clear();
m_vecInnerind.clear();
for (int i = 0; i < iNumCh; ++i) {
if(pFiffInfo->chs[i].chpos.coil_type == FIFFV_COIL_BABY_MAG ||
pFiffInfo->chs[i].chpos.coil_type == FIFFV_COIL_VV_PLANAR_T1 ||
pFiffInfo->chs[i].chpos.coil_type == FIFFV_COIL_VV_PLANAR_T2 ||
pFiffInfo->chs[i].chpos.coil_type == FIFFV_COIL_VV_PLANAR_T3) {
// Check if the sensor is bad, if not append to innerind
if(!(pFiffInfo->bads.contains(pFiffInfo->ch_names.at(i)))) {
m_vecInnerind.append(i);
m_lChannels.append(pFiffInfo->chs[i]);
}
}
}
}
//=============================================================================================================
void HpiDataUpdater::updateSensors(const QList<FIFFLIB::FiffChInfo>& lChannels)
{
const Accuracy accuracy = Accuracy::high;
m_sensors = m_sensorSetCreator.updateSensorSet(lChannels,accuracy);
}
//=============================================================================================================
void HpiDataUpdater::updateHpiDigitizer(const QList<FiffDigPoint>& lDig)
{
// extract hpi coils from digitizer
QList<FiffDigPoint> lHPIPoints;
int iNumCoils = 0;
for(int i = 0; i < lDig.size(); ++i) {
if(lDig[i].kind == FIFFV_POINT_HPI) {
iNumCoils++;
lHPIPoints.append(lDig[i]);
}
}
// convert to matrix iNumCoils x 3
if (lHPIPoints.size() > 0) {
m_matHpiDigitizer = MatrixXd(iNumCoils,3);
for (int i = 0; i < lHPIPoints.size(); ++i) {
m_matHpiDigitizer(i,0) = lHPIPoints.at(i).r[0];
m_matHpiDigitizer(i,1) = lHPIPoints.at(i).r[1];
m_matHpiDigitizer(i,2) = lHPIPoints.at(i).r[2];
}
} else {
std::cout << "HPIFit::updateHpiDigitizer - No HPI coils digitized. Returning." << std::endl;
return;
}
}
//=============================================================================================================
bool HpiDataUpdater::checkForUpdate(const FiffInfo::SPtr pFiffInfo)
{
const bool bUpdate = checkIfChanged(pFiffInfo->bads,pFiffInfo->chs);
if(bUpdate)
{
updateBadChannels(pFiffInfo);
updateChannels(pFiffInfo);
updateHpiDigitizer(pFiffInfo->dig);
updateSensors(m_lChannels);
}
return bUpdate;
}
//=============================================================================================================
bool HpiDataUpdater::checkIfChanged(const QList<QString>& lBads, const QList<FIFFLIB::FiffChInfo>& lChannels)
{
bool bUpdate = false;
if(!(m_lBads == lBads) || !(m_lChannels == lChannels)) {
bUpdate = true;
}
return bUpdate;
}
//=============================================================================================================
void HpiDataUpdater::prepareDataAndProjectors(const MatrixXd &matData, const MatrixXd &matProjectors)
{
prepareData(matData);
prepareProjectors(matProjectors);
m_matDataProjected = m_matProjectors * m_matInnerdata;
}
//=============================================================================================================
void HpiDataUpdater::prepareData(const Eigen::MatrixXd& matData)
{
// extract data for channels to use
m_matInnerdata = MatrixXd(m_vecInnerind.size(), matData.cols());
for(int j = 0; j < m_vecInnerind.size(); ++j) {
m_matInnerdata.row(j) << matData.row(m_vecInnerind[j]);
}
}
//=============================================================================================================
void HpiDataUpdater::prepareProjectors(const Eigen::MatrixXd& matProjectors)
{
// check if m_vecInnerInd is alreadz initialized
if(m_vecInnerind.size() == 0) {
std::cout << "HPIFit::updateProjectors - No channels. Returning." << std::endl;
return;
}
//Create new projector based on the excluded channels, first exclude the rows then the columns
MatrixXd matProjectorsRows(m_vecInnerind.size(),matProjectors.cols());
MatrixXd matProjectorsInnerind(m_vecInnerind.size(),m_vecInnerind.size());
for (int i = 0; i < matProjectorsRows.rows(); ++i) {
matProjectorsRows.row(i) = matProjectors.row(m_vecInnerind.at(i));
}
for (int i = 0; i < matProjectorsInnerind.cols(); ++i) {
matProjectorsInnerind.col(i) = matProjectorsRows.col(m_vecInnerind.at(i));
}
m_matProjectors = matProjectorsInnerind;
return;
}