added boxkde resamplin in 2D and 3D

read activity out of sensor offline file
This commit is contained in:
toni
2018-11-24 17:09:41 +01:00
parent 9388e6e725
commit 1dac907004
13 changed files with 180 additions and 48 deletions

View File

@@ -2,6 +2,7 @@
#define WALKMODULE_H
#include "../../../Grid.h"
#include "../../../GridPoint.h"
/** base-class for all WalkStates */
struct WalkState {

View File

@@ -40,7 +40,7 @@ public:
// NOTE: ctrl->turnAngle is cumulative SINCE the last transition!
// reset this one after every transition!
Assert::isBetween(ctrl->turnSinceLastTransition_rad, -3.0f, +3.0f, "the given turn angle is too high to make sense.. did you forget to set ctrl->turnAngle = 0 after each transition?");
//Assert::isBetween(ctrl->turnSinceLastTransition_rad, -3.0f, +3.0f, "the given turn angle is too high to make sense.. did you forget to set ctrl->turnAngle = 0 after each transition?");
// sensor noise
float var = distNoise.draw();