Filtering poses going into the controller #289
Unanswered
PrajwalBBharadwaj
asked this question in
Q&A
Replies: 1 comment
-
The poses a provided by Options for filtering:
|
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
-
We want to filter out bad pose values going to the flight controller.
Below is a part of the code we are using to get the quadrotor to takeoff and land.
`
def run_demo(self):
`
We see in the code that cf.takeoff and cf.land are services that are executed by the server-client pair. I am assuming that the flight controller is somehow accessed by the functions. The controller has to be a closed loop and hence, should have continuous access to the pose data. But we aren't really providing that data through our code here, so I am assuming that the flight controller somehow internally has access to this pose data. Since I want to filter out bad pose values, I would like to know how the controller is getting the instantaneous poses data on which it is acting and getting the quadrotor to the goal. Thank you!
Beta Was this translation helpful? Give feedback.
All reactions