added the mixing particle filter model with all is might and failures :)

This commit is contained in:
toni
2017-04-16 01:11:59 +02:00
parent c7691a81f0
commit 1f6df67010
6 changed files with 239 additions and 74 deletions

View File

@@ -5,12 +5,27 @@
#include <Indoor/data/Timestamp.h>
#include <Indoor/sensors/radio/VAPGrouper.h>
#include <eigen3/Eigen/Dense>
namespace Settings {
bool useKLB = true;
const int numParticles = 5000;
namespace Mode1 {
const double modeProbability = 0.5;
}
namespace Mode2 {
const double modeProbability = 0.5;
}
namespace Mixing {
//Eigen::Matrix2d transitionProbabilityMatrix(1,0,0,1);
const double lambda = 0.05;
}
namespace IMU {
const float turnSigma = 2.5; // 3.5
const float stepLength = 1.00;