Incorporating Unique Control Vectors for Each TaggedWeightedGaussianState in GM-PHD Filter #893
Unanswered
AliDehghani88
asked this question in
Q&A
Replies: 1 comment
-
I've been having similar thoughts on the shortcomings of the ControlModels which, to be honest, weren't put together with a particular use in mind. I think it's better if you use u as an input to control_model.function() to return the control output. That currently works for |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I am currently working through the Gaussian mixture PHD tutorial and have encountered a challenge that I would like your assistance with.
In the tracker loop, we have
current_state = reduced_states
, which contains multiple instances of TaggedWeightedGaussianState, each with its state vector, covariance, weight, tag, and timestamp.During the hypothesis generation step:
the Kalman prediction typically uses the formula
F*X + B*u
. In my case, it's essential to apply distinct control inputs (u) for each TaggedWeightedGaussianState.I understand that I can set a uniform control vector as follows example:
However, I'm struggling with a scenario where each TaggedWeightedGaussianState in current_state requires a unique control vector.
Could you please guide me on how to assign them?
Thank you
Beta Was this translation helpful? Give feedback.
All reactions