Commit c3f2c1df authored by Davis King's avatar Davis King

Added a python interface to find_max_global()

parent e302a61e
...@@ -30,6 +30,7 @@ set(python_srcs ...@@ -30,6 +30,7 @@ set(python_srcs
src/correlation_tracker.cpp src/correlation_tracker.cpp
src/face_recognition.cpp src/face_recognition.cpp
src/cnn_face_detector.cpp src/cnn_face_detector.cpp
src/global_optimization.cpp
) )
# Only add the GUI module if requested # Only add the GUI module if requested
......
...@@ -20,6 +20,7 @@ void bind_shape_predictors(); ...@@ -20,6 +20,7 @@ void bind_shape_predictors();
void bind_correlation_tracker(); void bind_correlation_tracker();
void bind_face_recognition(); void bind_face_recognition();
void bind_cnn_face_detection(); void bind_cnn_face_detection();
void bind_global_optimization();
#ifndef DLIB_NO_GUI_SUPPORT #ifndef DLIB_NO_GUI_SUPPORT
void bind_gui(); void bind_gui();
...@@ -53,6 +54,7 @@ BOOST_PYTHON_MODULE(dlib) ...@@ -53,6 +54,7 @@ BOOST_PYTHON_MODULE(dlib)
bind_correlation_tracker(); bind_correlation_tracker();
bind_face_recognition(); bind_face_recognition();
bind_cnn_face_detection(); bind_cnn_face_detection();
bind_global_optimization();
#ifndef DLIB_NO_GUI_SUPPORT #ifndef DLIB_NO_GUI_SUPPORT
bind_gui(); bind_gui();
#endif #endif
......
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