├── README.md ├── data ├── 1.txt ├── 2.txt ├── 3.txt ├── 4.txt ├── 5.txt ├── 6.txt └── 7.txt ├── feat_extract_test.py ├── feat_plot_test.py └── tools ├── MyPlot.py ├── Myos_angle.py ├── __init__.py ├── elbow_force_predict.py ├── elbow_force_predict_real.py ├── featureExtract.py └── reader.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GanKunlu/myo-tools/HEAD/README.md -------------------------------------------------------------------------------- /data/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GanKunlu/myo-tools/HEAD/data/1.txt -------------------------------------------------------------------------------- /data/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GanKunlu/myo-tools/HEAD/data/2.txt -------------------------------------------------------------------------------- /data/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GanKunlu/myo-tools/HEAD/data/3.txt -------------------------------------------------------------------------------- /data/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GanKunlu/myo-tools/HEAD/data/4.txt -------------------------------------------------------------------------------- /data/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GanKunlu/myo-tools/HEAD/data/5.txt -------------------------------------------------------------------------------- /data/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GanKunlu/myo-tools/HEAD/data/6.txt -------------------------------------------------------------------------------- /data/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GanKunlu/myo-tools/HEAD/data/7.txt -------------------------------------------------------------------------------- /feat_extract_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GanKunlu/myo-tools/HEAD/feat_extract_test.py -------------------------------------------------------------------------------- /feat_plot_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GanKunlu/myo-tools/HEAD/feat_plot_test.py -------------------------------------------------------------------------------- /tools/MyPlot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GanKunlu/myo-tools/HEAD/tools/MyPlot.py -------------------------------------------------------------------------------- /tools/Myos_angle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GanKunlu/myo-tools/HEAD/tools/Myos_angle.py -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tools/elbow_force_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GanKunlu/myo-tools/HEAD/tools/elbow_force_predict.py -------------------------------------------------------------------------------- /tools/elbow_force_predict_real.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GanKunlu/myo-tools/HEAD/tools/elbow_force_predict_real.py -------------------------------------------------------------------------------- /tools/featureExtract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GanKunlu/myo-tools/HEAD/tools/featureExtract.py -------------------------------------------------------------------------------- /tools/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GanKunlu/myo-tools/HEAD/tools/reader.py --------------------------------------------------------------------------------