Where is apriltag relocalization used in control error signal?
-
I am working on updating the positions of a custom path in vvpx4 so that it is updated to be offset by the current position prior to switching to offboard mode. At first I have been using
T_body_wrt_local
from thevio_manager.c
, but I notice that this value does not get changed with april tag detections. Following the chain, I see...
--> thetag_manager
callsgeometry
when we detect new tags and have the correct config values set here
--> we get our updated transform from the pose_filter, that updates the pointer tofilter_local_to_fixed
with what we calculted asnew_T_local_wrt_fixed
, which I believe is the new drone state I want to use, set here
--> global variables get updated withrc_pose_filter_fetch
where the pointer toT_local_wrt_fixed
gets overwritten with the value we just pushed to thefilter_local_to_fixed
, hereNow when we get the drone state from the
vio_manager
it only callsgeometry_get_T_body_wrt_local
, and I do not see where the drones state is updated with the new april tag offset. This could just be a misunderstanding on my part in how the system should work. The way I expect it to work is that the drone initializes it's state to be relative to starting position as the origin. This sets the global frame and is the reference frame the pixhawk expects drone state and targets to be set in. If this were the case, I would expect this to shift the state of the drone when a tag is detected (probably with some filtering on the px4 side that I'm also missing, to avoid the dicsontinuous jump in position). However, it appears that the drone state is set withgeometry_get_T_body_wrt_local
, and not the new fixed frame set by the april tag.Can you please clarify:
- Where does the april tag localization change the drone position being sent to the pixhawk to affect the error signal of
target-position
? I will need to use this position so I can correctly offset my path starting point - Does the px4 expect path in the same reference frame as vio state (ie position in world coordinates, velocities in body frame?)
- Where does the april tag localization change the drone position being sent to the pixhawk to affect the error signal of
-
- Where does the april tag localization change the drone position being sent to the pixhawk to affect the error signal of target-position? I will need to use this position so I can correctly offset my path starting point
The setpoints are are sent to
uart_mavlink.c
where they are transformed by
geometry_transform_fixed_setpoints_to_local
where the april tag transformation matrix is used to convert from fixed to local frame, which is sent off to the pixhawk. If no april tags are used local_frame == fixed_frame- Does the px4 expect path in the same reference frame as vio state (ie position in world coordinates, velocities in body frame?)
- px4 expects setpoints in local frame, but offboard figure eight assumes they are set in fixed frame (see above).
Please correct me if I am wrong here.
Cheers