36#define _USE_MATH_DEFINES
61, trans(MatrixXf::Identity(4,4))
62, invtrans(MatrixXf::Identity(4,4))
71, trans(MatrixXf::Identity(4,4))
72, invtrans(MatrixXf::Identity(4,4))
74 if(!read(p_IODevice, *
this))
76 throw std::runtime_error(
"Coordinate transform not found");
83: from(p_FiffCoordTrans.from)
84, to(p_FiffCoordTrans.to)
85, trans(p_FiffCoordTrans.trans)
86, invtrans(p_FiffCoordTrans.invtrans)
110 fiff_int_t from_new = this->
to;
112 this->
from = from_new;
123 FiffStream::SPtr pStream(
new FiffStream(&p_IODevice));
125 qInfo(
"Reading coordinate transform from %s...\n", pStream->streamName().toUtf8().constData());
132 FiffTag::UPtr t_pTag;
133 bool success =
false;
138 for ( qint32 k = 0; k < pStream->dir().size(); ++k )
142 pStream->read_tag(t_pTag,pStream->dir()[k]->pos);
143 p_Trans = t_pTag->toCoordTrans();
156 FiffStream::SPtr pStream = FiffStream::start_file(qIODevice);
157 qInfo(
"Write coordinate transform in %s...\n", pStream->streamName().toUtf8().constData());
174 MatrixX4f rr_ones(rr.rows(), 4);
180 rr_ones.block(0,0,rr.rows(),3) = rr;
181 return rr_ones*
trans.block<3,4>(0,0).transpose();
188 MatrixX4f rr_ones(rr.rows(), 4);
194 rr_ones.block(0,0,rr.rows(),3) = rr;
195 return rr_ones*
invtrans.block<3,4>(0,0).transpose();
218 default:
return "unknown";
226 this->
trans = MatrixXf::Zero(4,4);
233 this->
trans(3,3) = 1.0f;
242 this->
trans = matTrans;
248 this->
trans.row(3) = Vector4f(0,0,0,1).transpose();
266 std::cout <<
"Coordinate transformation: ";
269 for (
int p = 0; p < 3; p++)
270 qDebug(
"\t% 8.6f % 8.6f % 8.6f\t% 7.2f mm\n",
trans(p,0),
trans(p,1),
trans(p,2),1000*
trans(p,3));
278 MatrixX4f mDevHeadT = this->
trans;
279 Matrix3f mRot = mDevHeadT.block(0,0,3,3);
280 Matrix3f mRotNew = mTransDest.block(0,0,3,3);
282 Quaternionf quat(mRot);
283 Quaternionf quatNew(mRotNew);
288 Quaternionf quatCompare;
290 quatCompare = quat*quatNew.inverse();
291 fAngle = quat.angularDistance(quatNew);
292 fAngle = fAngle * 180 /
M_PI;
301 VectorXf vTrans = this->
trans.col(3);
302 VectorXf vTransDest = mTransDest.col(3);
304 float fMove = (vTrans-vTransDest).norm();
313 for (
int j = 0; j < 3; j++) {
314 res[j] = do_move ? t.
trans(j,3) : 0.0f;
315 for (
int k = 0; k < 3; k++)
316 res[j] += t.
trans(j,k) * r[k];
318 for (
int j = 0; j < 3; j++)
327 for (
int j = 0; j < 3; j++) {
328 res[j] = do_move ? t.
invtrans(j,3) : 0.0f;
329 for (
int k = 0; k < 3; k++)
332 for (
int j = 0; j < 3; j++)
366 for (
int swapped = 0; swapped < 2 && !found; swapped++) {
371 a = s1; b = s2; found =
true;
373 a = s1.
inverted(); b = s2; found =
true;
375 a = s1; b = s2.
inverted(); found =
true;
381 if (!found || a.
from != b.
to) {
382 qCritical(
"Cannot combine coordinate transforms");
391 result.
trans.row(3) << 0.0f, 0.0f, 0.0f, 1.0f;
403 Map<const Vector3f> L(rL);
404 Map<const Vector3f> N(rN);
405 Map<const Vector3f>
R(rR);
407 Vector3f diff1 = N - L;
408 Vector3f diff2 =
R - L;
410 float alpha = diff1.dot(diff2) / diff2.dot(diff2);
411 Vector3f r0 = (1.0f - alpha) * L + alpha *
R;
412 Vector3f ex = diff2.normalized();
413 Vector3f ey = (N - r0).normalized();
414 Vector3f ez = ex.cross(ey);
419 result.
rot().col(0) = ex;
420 result.
rot().col(1) = ey;
421 result.
rot().col(2) = ez;
432 FiffStream::SPtr stream(
new FiffStream(&file));
434 if (!stream->open()) {
438 FiffTag::UPtr t_pTag;
439 for (
int k = 0; k < stream->dir().size(); k++) {
441 if (!stream->read_tag(t_pTag, stream->dir()[k]->pos))
456 qCritical(
"No suitable coordinate transformation found in %s.", name.toUtf8().constData());
480 if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) {
481 qCritical(
"Cannot open %s", name.toUtf8().constData());
485 QTextStream in(&file);
490 while (!in.atEnd() && row < 4) {
491 QString line = in.readLine();
493 int commentIdx = line.indexOf(
'#');
495 line = line.left(commentIdx);
496 line = line.trimmed();
501 QStringList parts = line.simplified().split(
' ', Qt::SkipEmptyParts);
502 if (parts.size() < 4) {
503 qCritical(
"Cannot read the coordinate transformation from %s",
504 name.toUtf8().constData());
507 bool ok1, ok2, ok3, ok4;
508 rot(row, 0) = parts[0].toFloat(&ok1);
509 rot(row, 1) = parts[1].toFloat(&ok2);
510 rot(row, 2) = parts[2].toFloat(&ok3);
511 moveVec[row] = parts[3].toFloat(&ok4) / 1000.0f;
512 if (!ok1 || !ok2 || !ok3 || !ok4) {
513 qCritical(
"Bad floating point number in coordinate transformation");
522 qCritical(
"Cannot read the coordinate transformation from %s",
523 name.toUtf8().constData());
545 qint32* t_pInt32 = (qint32*)tag->data();
546 t.
from = t_pInt32[0];
549 float* t_pFloat = (
float*)tag->data();
552 for (r = 0; r < 3; ++r) {
553 t.
trans(r, 3) = t_pFloat[11 + r];
554 for (c = 0; c < 3; ++c) {
555 t.
trans(r, c) = t_pFloat[2 + count];
562 for (r = 0; r < 3; ++r) {
563 t.
invtrans(r, 3) = t_pFloat[23 + r];
564 for (c = 0; c < 3; ++c) {
565 t.
invtrans(r, c) = t_pFloat[14 + count];
580 FiffTag::UPtr t_pTag;
581 fiff_int_t kind, pos;
584 for (k = 0; k < node->nent(); k++)
585 kind = node->dir[k]->kind;
586 pos = node->dir[k]->pos;
588 if (!stream->read_tag(t_pTag, pos))
600 qWarning(
"No suitable coordinate transformation found");
608 const Eigen::MatrixXf& fromPts,
609 const Eigen::MatrixXf& toPts,
610 const Eigen::VectorXf& w,
613 int np = fromPts.rows();
616 Eigen::Vector3f
from0 = fromPts.colwise().mean();
617 Eigen::Vector3f
to0 = toPts.colwise().mean();
619 Eigen::MatrixXf
fromC = fromPts.rowwise() -
from0.transpose();
620 Eigen::MatrixXf
toC = toPts.rowwise() -
to0.transpose();
625 S =
fromC.transpose() * w.asDiagonal() *
toC;
631 Eigen::JacobiSVD<Eigen::Matrix3f>
svd(
S, Eigen::ComputeFullU | Eigen::ComputeFullV);
632 Eigen::Matrix3f
R =
svd.matrixV() *
svd.matrixU().transpose();
638 for (
int p = 0; p < np; ++p) {
639 Eigen::Vector3f rr =
R * fromPts.row(p).transpose() +
moveVec;
640 float diff = (toPts.row(p).transpose() - rr).norm();
641 if (diff > max_diff) {
642 qWarning(
"Too large difference in matching : %7.1f > %7.1f mm",
643 1000.0f * diff, 1000.0f * max_diff);
return FiffCoordTrans(from_frame, to_frame, R, moveVec)
Eigen::JacobiSVD< Eigen::Matrix3f > svd(S, Eigen::ComputeFullU|Eigen::ComputeFullV)
#define FIFFV_MNE_COORD_MNI_TAL
#define FIFFV_MNE_COORD_FS_TAL_LTZ
#define FIFFV_COORD_MRI_SLICE
#define FIFFV_MNE_COORD_CTF_DEVICE
#define FIFFV_COORD_DEVICE
#define FIFFV_COORD_MRI_DISPLAY
#define FIFFV_MNE_COORD_MRI_VOXEL
#define FIFFV_MNE_COORD_CTF_HEAD
#define FIFFV_COORD_ISOTRAK
#define FIFFV_COORD_UNKNOWN
#define FIFFV_MNE_COORD_FS_TAL_GTZ
#define FIFFV_MNE_COORD_RAS
Recursive node of the parsed FIFF block tree (FIFFB_* hierarchy with directory entries and children).
#define FIFFT_COORD_TRANS_STRUCT
FIFF tag: the 16-byte tag header (kind, type, size, next) plus its decoded payload.
4x4 affine FIFF coordinate transform (FIFF_COORD_TRANS) annotated with source/destination coordinate-...
FIFF binary tag-stream layer: wraps a QIODevice to read and write FIFF tags, directories,...
FIFF file I/O, in-memory data structures and high-level readers/writers.
static FiffCoordTrans procrustesAlign(int from_frame, int to_frame, const Eigen::MatrixXf &fromp, const Eigen::MatrixXf &top, const Eigen::VectorXf &w, float max_diff)
static FiffCoordTrans combine(int from, int to, const FiffCoordTrans &t1, const FiffCoordTrans &t2)
static QString frame_name(int frame)
static FiffCoordTrans readTransformFromNode(FiffStream::SPtr &stream, const FiffDirNode::SPtr &node, int from, int to)
void writeToStream(FiffStream *p_pStream)
Writes the transformation to a FIFF stream.
static FiffCoordTrans readMeasTransform(const QString &name)
static FiffCoordTrans readFShead2mriTransform(const QString &name)
Eigen::MatrixX3f apply_inverse_trans(const Eigen::MatrixX3f &rr, bool do_move=true) const
static FiffCoordTrans readMriTransform(const QString &name)
static FiffCoordTrans readTransformAscii(const QString &name, int from, int to)
static bool read(QIODevice &p_IODevice, FiffCoordTrans &p_Trans)
FiffCoordTrans inverted() const
Eigen::MatrixX3f apply_trans(const Eigen::MatrixX3f &rr, bool do_move=true) const
float angleTo(Eigen::MatrixX4f mTransDest)
static FiffCoordTrans identity(int from, int to)
Eigen::Matrix< float, 4, 4, Eigen::DontAlign > trans
static FiffCoordTrans fromCardinalPoints(int from, int to, const float *rL, const float *rN, const float *rR)
float translationTo(Eigen::MatrixX4f mTransDest)
void write(QIODevice &p_IODevice)
Writes the transformation to file.
static FiffCoordTrans readTransform(const QString &name, int from, int to)
Eigen::Matrix< float, 4, 4, Eigen::DontAlign > invtrans
static bool addInverse(FiffCoordTrans &t)
static FiffCoordTrans readFromTag(const std::unique_ptr< FiffTag > &tag)
QSharedPointer< FiffDirNode > SPtr
FIFF tag-stream reader/writer: wraps a QIODevice and exposes typed read_* / write_* methods for every...
QSharedPointer< FiffStream > SPtr
fiff_long_t write_coord_trans(const FiffCoordTrans &trans)
std::unique_ptr< FiffTag > UPtr
FiffCoordTrans inverted() const
Eigen::Matrix< float, 4, 4, Eigen::DontAlign > trans
Eigen::Matrix< float, 4, 4, Eigen::DontAlign > invtrans
static bool addInverse(FiffCoordTrans &t)