cydtw

DTW computation made efficient using Cython


License
Other
Install
pip install cydtw==0.1.4

Documentation

cydtw

DTW computation made efficient using Cython

Installation

pip install cydtw

Usage and example

See file test_compare.py

This module basically provides two main functions:

from cydtw import dtw, dtw_path

s1 = ...
s2 = ...

path, dtw_dist = dtw_path(s1, s2)
dtw_dist = dtw_path(s1, s2)