We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
It seems that we should replace this wrong line: P = _alpha_sq * ((F * P), F.transpose()) + Q; by this: P = _alpha_sq * ((F * P) * F.transpose()) + Q;
P = _alpha_sq * ((F * P), F.transpose()) + Q;
P = _alpha_sq * ((F * P) * F.transpose()) + Q;
See python reference code: self.P = self._alpha_sq * dot(dot(F, self.P), F.T) + Q
self.P = self._alpha_sq * dot(dot(F, self.P), F.T) + Q
https://github.com/noahcao/OC_SORT/blame/7a390a5f35dbbb45df6cd584588c216aea527248/deploy/OCSort/cpp/src/KalmanFilter.cpp#L29
The text was updated successfully, but these errors were encountered:
👍🏻
Sorry, something went wrong.
No branches or pull requests
Hello,
It seems that we should replace this wrong line:
P = _alpha_sq * ((F * P), F.transpose()) + Q;
by this:
P = _alpha_sq * ((F * P) * F.transpose()) + Q;
See python reference code:
self.P = self._alpha_sq * dot(dot(F, self.P), F.T) + Q
https://github.com/noahcao/OC_SORT/blame/7a390a5f35dbbb45df6cd584588c216aea527248/deploy/OCSort/cpp/src/KalmanFilter.cpp#L29
The text was updated successfully, but these errors were encountered: