c++ - icp registration with constraint degree of freedom( RX, RY, TX, TY, TZ ) - Stack Overflow
I have 2 sets of pointcloud to be registed, common results of icp is for 6dof, Is it possible to constraint the registration to 5dof(RX, RY, TX, TY, TZ)? I tried to implement my own warp_point_rigid_RxRyT.h, which is a modification of <pcl/registration/warp_point_rigid_6d.h>
The modification is as below:
void setParam(const VectorX& p) override { assert(p.rows() == this->getDimension());
// Copy the rotation and translation components
transform_matrix_.setZero();
transform_matrix_(0, 3) = p[0];
transform_matrix_(1, 3) = p[1];
transform_matrix_(2, 3) = p[2];
transform_matrix_(3, 3) = 1;
// Compute w from the unit quaternion
Eigen::Quaternion<Scalar> q(0, p[3], p[4], 0);
q.w() = static_cast<Scalar>(std::sqrt(1 - q.dot(q)));
q.normalize();
transform_matrix_.template topLeftCorner<3, 3>() = q.toRotationMatrix();
}
It doesn't work, the icp result is still 6dof.
最新文章
- 能跑安卓的锐龙3000C原来是它!热设计功耗低至4.5W
- 思科宣布27亿美元收购安全软件厂商Sourcefire
- 谷歌重塑软件业务围剿苹果
- android - Room Database is very slow For query 20 results with limit in 25k records - Stack Overflow
- graphdb - vector embedding on ontotext similarity plugin - Stack Overflow
- apache spark - Can't save pyspark ML model :py4j.protocol.Py4JJavaError: An error occurred while calling o577.save. : ja
- How to import a svelte.ts component from another app where the import is with $lib - Stack Overflow
- java - I have an issue with tmcbeans, I can not run projects - Stack Overflow
- amazon web services - Why is my AWS CDK Stack failing for an unclear reason? - Stack Overflow
- malloc - C memory leak warning - Stack Overflow
- shell - how to change my CONDA_DEFAULT_ENV in Linux? - Stack Overflow
- c - Segmentation fault when access mapped memory - Stack Overflow
- apple swift: is forKey:fileSize considered accessing non-public API? - Stack Overflow
- spring boot - Java - Implement @Component class dynmically - Stack Overflow
- node.js - node-gyp fails with parsing vs version: undefined - Stack Overflow
- angularjs - how to display a pdf in angular? - Stack Overflow
- How to I get excel to look up values in the nth column based on a number in a cell? - Stack Overflow