changed threshold for steps
This commit is contained in:
@@ -123,7 +123,7 @@ public:
|
||||
const bool useNormal = (distToWall_m*3.5 < distToDoor_m && distToWall_m*3.5 < distToStair_m);
|
||||
|
||||
// final probability
|
||||
n1.walkImportance = 1.0f;
|
||||
n1.walkImportance = 1.0f;
|
||||
//n1.walkImportance += favorDoors.getProbability(distToDoor_m) * 0.75f;
|
||||
n1.walkImportance += favorStairs.getProbability(distToStair_m) * 1.0f;
|
||||
|
||||
|
||||
@@ -34,9 +34,9 @@ private:
|
||||
Timestamp blockUntil;
|
||||
bool waitForUp = false;
|
||||
|
||||
const Timestamp blockTime = Timestamp::fromMS(150); // 150-250 looks good
|
||||
const float upperThreshold = +0.4*0.6f; // + is usually smaller than down (look at graphs)
|
||||
const float lowerThreshold = -0.8*0.6f; // the 0.8 is for testing!
|
||||
const Timestamp blockTime = Timestamp::fromMS(250); // 150-250 looks good
|
||||
const float upperThreshold = +0.4*0.6f; // + is usually smaller than down (look at graphs)
|
||||
const float lowerThreshold = -1.5*0.6f; // the 0.8 is for testing!
|
||||
|
||||
public:
|
||||
|
||||
|
||||
@@ -52,7 +52,7 @@ public:
|
||||
/** ctor */
|
||||
ActivityButterPressure() : currentActivity(STAY){
|
||||
;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/** add new sensor readings that were received at the given timestamp */
|
||||
|
||||
Reference in New Issue
Block a user