├── .gitattributes ├── LICENSE ├── README.md ├── data ├── Accelerometer.csv ├── Gyroscope.csv ├── Location.csv └── Magnetometer.csv ├── doc └── ImprovedPDR.pdf ├── graphs ├── Acceleration Norm.png ├── Accelerometer.png ├── Gyroscope.png ├── Magnetometer.png ├── compute_steps_method1.png ├── compute_steps_method2.png ├── compute_steps_method3.png ├── compute_steps_method4.png ├── result.png ├── steps_length.png ├── tracking.png └── tracking_comparaison.PNG ├── requirements.txt └── src ├── .gitignore ├── adaptiveJerkPaceThreshold.py ├── computeLength.py ├── computeSteps.py ├── deadreckoning.py ├── lowpass.py ├── peakAccelThreshold.py ├── peakDetection.py └── plot.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymdi/DeadReckoning/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymdi/DeadReckoning/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymdi/DeadReckoning/HEAD/README.md -------------------------------------------------------------------------------- /data/Accelerometer.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymdi/DeadReckoning/HEAD/data/Accelerometer.csv -------------------------------------------------------------------------------- /data/Gyroscope.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymdi/DeadReckoning/HEAD/data/Gyroscope.csv -------------------------------------------------------------------------------- /data/Location.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymdi/DeadReckoning/HEAD/data/Location.csv -------------------------------------------------------------------------------- /data/Magnetometer.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymdi/DeadReckoning/HEAD/data/Magnetometer.csv -------------------------------------------------------------------------------- /doc/ImprovedPDR.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymdi/DeadReckoning/HEAD/doc/ImprovedPDR.pdf -------------------------------------------------------------------------------- /graphs/Acceleration Norm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymdi/DeadReckoning/HEAD/graphs/Acceleration Norm.png -------------------------------------------------------------------------------- /graphs/Accelerometer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymdi/DeadReckoning/HEAD/graphs/Accelerometer.png -------------------------------------------------------------------------------- /graphs/Gyroscope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymdi/DeadReckoning/HEAD/graphs/Gyroscope.png -------------------------------------------------------------------------------- /graphs/Magnetometer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymdi/DeadReckoning/HEAD/graphs/Magnetometer.png -------------------------------------------------------------------------------- /graphs/compute_steps_method1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymdi/DeadReckoning/HEAD/graphs/compute_steps_method1.png -------------------------------------------------------------------------------- /graphs/compute_steps_method2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymdi/DeadReckoning/HEAD/graphs/compute_steps_method2.png -------------------------------------------------------------------------------- /graphs/compute_steps_method3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymdi/DeadReckoning/HEAD/graphs/compute_steps_method3.png -------------------------------------------------------------------------------- /graphs/compute_steps_method4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymdi/DeadReckoning/HEAD/graphs/compute_steps_method4.png -------------------------------------------------------------------------------- /graphs/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymdi/DeadReckoning/HEAD/graphs/result.png -------------------------------------------------------------------------------- /graphs/steps_length.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymdi/DeadReckoning/HEAD/graphs/steps_length.png -------------------------------------------------------------------------------- /graphs/tracking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymdi/DeadReckoning/HEAD/graphs/tracking.png -------------------------------------------------------------------------------- /graphs/tracking_comparaison.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymdi/DeadReckoning/HEAD/graphs/tracking_comparaison.PNG -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymdi/DeadReckoning/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ -------------------------------------------------------------------------------- /src/adaptiveJerkPaceThreshold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymdi/DeadReckoning/HEAD/src/adaptiveJerkPaceThreshold.py -------------------------------------------------------------------------------- /src/computeLength.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymdi/DeadReckoning/HEAD/src/computeLength.py -------------------------------------------------------------------------------- /src/computeSteps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymdi/DeadReckoning/HEAD/src/computeSteps.py -------------------------------------------------------------------------------- /src/deadreckoning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymdi/DeadReckoning/HEAD/src/deadreckoning.py -------------------------------------------------------------------------------- /src/lowpass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymdi/DeadReckoning/HEAD/src/lowpass.py -------------------------------------------------------------------------------- /src/peakAccelThreshold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymdi/DeadReckoning/HEAD/src/peakAccelThreshold.py -------------------------------------------------------------------------------- /src/peakDetection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymdi/DeadReckoning/HEAD/src/peakDetection.py -------------------------------------------------------------------------------- /src/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aymdi/DeadReckoning/HEAD/src/plot.py --------------------------------------------------------------------------------