File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
examples/Example6_StandardDeviation Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -45,9 +45,13 @@ void loop()
4545 // Read the standard deviation of the tracking. Note that these values are
4646 // just the square root of the diagonal elements of the covariance matrices
4747 // of the Kalman filters used in the firmware of the OTOS, and THEY DO NOT
48- // REPRESENT THE ACTUAL TRACKING ERROR! These values are provided primarily
49- // for anyone wanting to do sensor fusion with additional sensors, but they
50- // can be used to at least get an idea of the quality of the tracking.
48+ // REPRESENT THE ACTUAL TRACKING ERROR! These are statistical quantities
49+ // that assume a correct model of the system, but there could be unmodelled
50+ // error sources that cause the physical error to become larger than these
51+ // statistical error (eg. improper calibration, or rotating the OTOS to not
52+ // be flat against the tracking surface). These are provided primarily for
53+ // anyone wanting to perform sensor fusion with additional sensors, but they
54+ // can be used to at least "get an idea" of the quality of the accuracy.
5155 myOtos.getPositionStdDev (posStdDev);
5256 // myOtos.getVelocityStdDev(velStdDev);
5357 // myOtos.getAccerlationStdDev(accStdDev);
You can’t perform that action at this time.
0 commit comments