├── .gitignore ├── audio ├── bye.wav ├── cat.wav ├── goodbye.wav ├── hello1.wav ├── hello2.wav └── hello3.wav ├── dtw.ipynb ├── fig └── Two_repetitions_of_a_walking_sequence_of_an_individual_recorded_using_a_motion-capture_system.gif └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb_checkpoints 2 | fig/*.pdf -------------------------------------------------------------------------------- /audio/bye.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamperh/lecture_dtw_notebook/727f4af862aa786935219f8d6dba0b15fa22e78f/audio/bye.wav -------------------------------------------------------------------------------- /audio/cat.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamperh/lecture_dtw_notebook/727f4af862aa786935219f8d6dba0b15fa22e78f/audio/cat.wav -------------------------------------------------------------------------------- /audio/goodbye.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamperh/lecture_dtw_notebook/727f4af862aa786935219f8d6dba0b15fa22e78f/audio/goodbye.wav -------------------------------------------------------------------------------- /audio/hello1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamperh/lecture_dtw_notebook/727f4af862aa786935219f8d6dba0b15fa22e78f/audio/hello1.wav -------------------------------------------------------------------------------- /audio/hello2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamperh/lecture_dtw_notebook/727f4af862aa786935219f8d6dba0b15fa22e78f/audio/hello2.wav -------------------------------------------------------------------------------- /audio/hello3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamperh/lecture_dtw_notebook/727f4af862aa786935219f8d6dba0b15fa22e78f/audio/hello3.wav -------------------------------------------------------------------------------- /fig/Two_repetitions_of_a_walking_sequence_of_an_individual_recorded_using_a_motion-capture_system.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamperh/lecture_dtw_notebook/727f4af862aa786935219f8d6dba0b15fa22e78f/fig/Two_repetitions_of_a_walking_sequence_of_an_individual_recorded_using_a_motion-capture_system.gif -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | Dynamic Time Warping Notebook 2 | ============================= 3 | 4 | Overview 5 | -------- 6 | This repository provides the [notebook](dtw.ipynb) used for my lectures on 7 | dynamic time warping provided on [this YouTube 8 | playlist](https://www.youtube.com/playlist?list=PLmZlBIcArwhMJoGk5zpiRlkaHUqy5dLzL). 9 | 10 | 11 | License 12 | ------- 13 | Herman Kamper, 2021. 14 | This work is released under a Creative Commons Attribution-ShareAlike 15 | license ([CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/)). 16 | --------------------------------------------------------------------------------