Skip to content
Snippets Groups Projects
Commit ae31e4ff authored by Simon Ottenhaus's avatar Simon Ottenhaus
Browse files

LimitVectorLength

parent 4c51c4ad
No related branches found
Tags v2.3.48
No related merge requests found
......@@ -270,3 +270,21 @@ Eigen::Matrix3f Helpers::GetOrientation(const Eigen::Matrix4f& pose)
return pose.block<3, 3>(0, 0);
}
Eigen::VectorXf Helpers::LimitVectorLength(const Eigen::VectorXf& vec, const Eigen::VectorXf& maxLen)
{
if(maxLen.rows() != 1 && maxLen.rows() != vec.rows())
{
throw std::invalid_argument("maxLen.rows != 1 and != maxLen.rows");
}
float scale = 1;
for(int i = 0; i < vec.rows(); i++)
{
int j = maxLen.rows() == 1 ? 0 : i;
if(std::abs(vec(i)) > maxLen(j) && maxLen(j) >= 0)
{
scale = std::min(scale, maxLen(j) / std::abs(vec(i)));
}
}
return vec / scale;
}
......@@ -65,6 +65,7 @@ namespace math
static float Distance(const Eigen::Matrix4f& a, const Eigen::Matrix4f& b, float rad2mmFactor);
static Eigen::Vector3f GetPosition(const Eigen::Matrix4f& pose);
static Eigen::Matrix3f GetOrientation(const Eigen::Matrix4f& pose);
static Eigen::VectorXf LimitVectorLength(const Eigen::VectorXf& vec, const Eigen::VectorXf& maxLen);
private:
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment