Record standard deviations for multi-tag pose (#1019)

* Record standard deviations for multi-tag pose

* Add XYZ translation and angle to stdev uI

* create multitag result buffer in store

allows results to be stored in the background

* simplify logic in targeting tab

also adds a reset button

* Formatting fixes

* convert rad angles to deg

---------

Co-authored-by: Sriman Achanta <68172138+srimanachanta@users.noreply.github.com>
This commit is contained in:
Matt
2023-12-19 15:47:53 -05:00
committed by GitHub
parent 796b8e73d5
commit 954ca9a577
4 changed files with 142 additions and 30 deletions

View File

@@ -6,6 +6,8 @@ export interface Transform3d {
qx: number;
qy: number;
qz: number;
angle_x: number;
angle_y: number;
angle_z: number;
}