What is the threshold for idle?
In the paper "Zee: Zero-Effort Crowdsourcing for Indoor Localization" it indicates 0.01

but the autocorrelation code uses 0.02
https://github.com/hermanwongkm/OneStepAtATime/blob/master/autocorrelation3.py#L228
and it is set 0.02 in main.py
https://github.com/hermanwongkm/OneStepAtATime/blob/master/main.py#L84
Also the cutoff for "DRIVING" is different between main and autocorrelation, which should be used?
|
elif (autoCorrelationValue > 0.4 and sd < 0.08): |
|
elif (acChosen > 0.4 and sd < 0.05): |
What is the threshold for idle?
In the paper "Zee: Zero-Effort Crowdsourcing for Indoor Localization" it indicates 0.01

but the autocorrelation code uses 0.02
https://github.com/hermanwongkm/OneStepAtATime/blob/master/autocorrelation3.py#L228
OneStepAtATime/autocorrelation3.py
Line 228 in 364c00c
and it is set 0.02 in main.py
https://github.com/hermanwongkm/OneStepAtATime/blob/master/main.py#L84
OneStepAtATime/main.py
Line 84 in 364c00c
Also the cutoff for "DRIVING" is different between main and autocorrelation, which should be used?
OneStepAtATime/autocorrelation3.py
Line 236 in 364c00c
OneStepAtATime/main.py
Line 99 in 364c00c