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
4aed5b2b
Commit
4aed5b2b
authored
Jul 07, 2018
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Split image.cpp into two files so builds are more parallelizeable.
parent
ea2fbcab
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 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
image.cpp
tools/python/src/image.cpp
+0
-0
image3.cpp
tools/python/src/image3.cpp
+0
-0
No files found.
tools/python/CMakeLists.txt
View file @
4aed5b2b
...
...
@@ -48,6 +48,7 @@ set(python_srcs
src/svm_struct.cpp
src/image.cpp
src/image2.cpp
src/image3.cpp
src/rectangles.cpp
src/object_detection.cpp
src/shape_predictor.cpp
...
...
tools/python/src/dlib.cpp
View file @
4aed5b2b
...
...
@@ -20,6 +20,7 @@ void bind_sequence_segmenter(py::module& m);
void
bind_svm_struct
(
py
::
module
&
m
);
void
bind_image_classes
(
py
::
module
&
m
);
void
bind_image_classes2
(
py
::
module
&
m
);
void
bind_image_classes3
(
py
::
module
&
m
);
void
bind_rectangles
(
py
::
module
&
m
);
void
bind_object_detection
(
py
::
module
&
m
);
void
bind_shape_predictors
(
py
::
module
&
m
);
...
...
@@ -96,6 +97,7 @@ PYBIND11_MODULE(dlib, m)
bind_rectangles
(
m
);
bind_image_classes
(
m
);
bind_image_classes2
(
m
);
bind_image_classes3
(
m
);
bind_object_detection
(
m
);
bind_shape_predictors
(
m
);
bind_correlation_tracker
(
m
);
...
...
tools/python/src/image.cpp
View file @
4aed5b2b
This diff is collapsed.
Click to expand it.
tools/python/src/image3.cpp
0 → 100644
View file @
4aed5b2b
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