-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
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
initial commit #216
initial commit #216
Conversation
) -> tuple[bool, list[DetectionInWorld] | None]: | ||
for detection_in_world in detections_in_world: | ||
if len(detection_in_world.centre) == 3: | ||
result, detection_in_world_global = drone_position_global_from_local( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Create a new function in the local_global_conversion
library that returns a DetectionInWorld
in global space after taking in home position and DetectionInWorld
in local space.
If you want to be extra safe, you could create a new class solely for global locations (e.g. LocationGlobal
). Hmm, now that I think about it, surely that class must already exist somewhere (maybe in pathing repository)?
7e7dc61
to
74f5c2e
Compare
…mmunication worker
Implemented in PR #277 |
No description provided.