Commit a20f1544 authored by Davis King's avatar Davis King

Added a python interface to the fhog_object_detector and related tools.

parent 78aeaca9
...@@ -16,6 +16,7 @@ add_python_module(dlib ...@@ -16,6 +16,7 @@ add_python_module(dlib
src/cca.cpp src/cca.cpp
src/sequence_segmenter.cpp src/sequence_segmenter.cpp
src/svm_struct.cpp src/svm_struct.cpp
src/object_detection.cpp
) )
# When you run "make install" we will copy the compiled dlib.so (or dlib.pyd) # When you run "make install" we will copy the compiled dlib.so (or dlib.pyd)
......
...@@ -13,6 +13,7 @@ void bind_svm_rank_trainer(); ...@@ -13,6 +13,7 @@ void bind_svm_rank_trainer();
void bind_cca(); void bind_cca();
void bind_sequence_segmenter(); void bind_sequence_segmenter();
void bind_svm_struct(); void bind_svm_struct();
void bind_object_detection();
BOOST_PYTHON_MODULE(dlib) BOOST_PYTHON_MODULE(dlib)
...@@ -31,5 +32,6 @@ BOOST_PYTHON_MODULE(dlib) ...@@ -31,5 +32,6 @@ BOOST_PYTHON_MODULE(dlib)
bind_cca(); bind_cca();
bind_sequence_segmenter(); bind_sequence_segmenter();
bind_svm_struct(); bind_svm_struct();
bind_object_detection();
} }
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