aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcnlohr <lohr85@gmail.com>2018-06-25 05:56:05 +0000
committercnlohr <lohr85@gmail.com>2018-06-25 05:56:05 +0000
commit7a16dc316c23d55453174c56fbff89f043db3552 (patch)
treec52967f62b1cce9f6ba3e7f4b6d232218d54ab65
parenta0f4e2b3265ae242772f7a69bf6e096a2def64b3 (diff)
downloadlibsurvive-7a16dc316c23d55453174c56fbff89f043db3552.tar.gz
libsurvive-7a16dc316c23d55453174c56fbff89f043db3552.tar.bz2
add additional comments about where to go from here.
-rw-r--r--src/poser_charlesrefine.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/poser_charlesrefine.c b/src/poser_charlesrefine.c
index d0d5b17..e95b621 100644
--- a/src/poser_charlesrefine.c
+++ b/src/poser_charlesrefine.c
@@ -13,6 +13,11 @@
#define MAX_PT_PER_SWEEP SENSORS_PER_OBJECT
+/*
+ More notes to self:
+ try updating expected lighthouse position against each lighthouse with imu data and don't tie them to each other.
+
+*/
// Tunable parameters:
@@ -155,7 +160,7 @@ int PoserCharlesRefine(SurviveObject *so, PoserData *pd) {
LinmathPoint3d rotated_out;
quatrotatevector( rotated_out, dd->InteralPoseUsedForCalc.Rot, imuData->accel );
- if( so->PoseConfidence > 0.9999 )
+ if( so->PoseConfidence > 0.6 )
{
LinmathPoint3d correction;