Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
D
dlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
钟尚武
dlib
Commits
c3f2c1df
Commit
c3f2c1df
authored
Nov 25, 2017
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added a python interface to find_max_global()
parent
e302a61e
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
0 deletions
+3
-0
CMakeLists.txt
tools/python/CMakeLists.txt
+1
-0
dlib.cpp
tools/python/src/dlib.cpp
+2
-0
global_optimization.cpp
tools/python/src/global_optimization.cpp
+0
-0
No files found.
tools/python/CMakeLists.txt
View file @
c3f2c1df
...
...
@@ -30,6 +30,7 @@ set(python_srcs
src/correlation_tracker.cpp
src/face_recognition.cpp
src/cnn_face_detector.cpp
src/global_optimization.cpp
)
# Only add the GUI module if requested
...
...
tools/python/src/dlib.cpp
View file @
c3f2c1df
...
...
@@ -20,6 +20,7 @@ void bind_shape_predictors();
void
bind_correlation_tracker
();
void
bind_face_recognition
();
void
bind_cnn_face_detection
();
void
bind_global_optimization
();
#ifndef DLIB_NO_GUI_SUPPORT
void
bind_gui
();
...
...
@@ -53,6 +54,7 @@ BOOST_PYTHON_MODULE(dlib)
bind_correlation_tracker
();
bind_face_recognition
();
bind_cnn_face_detection
();
bind_global_optimization
();
#ifndef DLIB_NO_GUI_SUPPORT
bind_gui
();
#endif
...
...
tools/python/src/global_optimization.cpp
0 → 100644
View file @
c3f2c1df
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment