Commit cecc38f5 authored by Davis King's avatar Davis King

Added support for using the dense vector version of the sequence_segmenter from

python.
parent 09895ba8
......@@ -13,4 +13,5 @@ add_python_module(dlib
src/other.cpp
src/basic.cpp
src/cca.cpp
src/sequence_segmenter.cpp
)
......@@ -9,6 +9,7 @@ void bind_basic_types();
void bind_other();
void bind_svm_rank_trainer();
void bind_cca();
void bind_sequence_segmenter();
BOOST_PYTHON_MODULE(dlib)
......@@ -25,5 +26,6 @@ BOOST_PYTHON_MODULE(dlib)
bind_other();
bind_svm_rank_trainer();
bind_cca();
bind_sequence_segmenter();
}
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment