You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (only_position)
{
projected_mean.tail<4>().setZero();
projected_covariance.bottomRightCorner<2, 2>().setZero();
}
projected_mean is a 4-dims vector of type KFMeasSpaceVec , so projected_mean.tail<4>().setZero() will make projected_mean a zero vector; i think it's not right, and maybe the right implementation is:
if (only_position)
{
projected_mean.tail<2>().setZero();
projected_covariance.bottomRightCorner<2, 2>().setZero();
}
The text was updated successfully, but these errors were encountered:
hi; in KalmanFilter.cpp, about line 120:
projected_mean is a 4-dims vector of type KFMeasSpaceVec , so projected_mean.tail<4>().setZero() will make projected_mean a zero vector; i think it's not right, and maybe the right implementation is:
The text was updated successfully, but these errors were encountered: