Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
3f19503a
Commit
3f19503a
authored
Jul 07, 2018
by
Davis King
Browse files
Split image2.cpp into two files to help speed up the build.
parent
4aed5b2b
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
840 additions
and
786 deletions
+840
-786
tools/python/CMakeLists.txt
tools/python/CMakeLists.txt
+1
-0
tools/python/src/dlib.cpp
tools/python/src/dlib.cpp
+2
-0
tools/python/src/image2.cpp
tools/python/src/image2.cpp
+0
-786
tools/python/src/image4.cpp
tools/python/src/image4.cpp
+837
-0
No files found.
tools/python/CMakeLists.txt
View file @
3f19503a
...
...
@@ -49,6 +49,7 @@ set(python_srcs
src/image.cpp
src/image2.cpp
src/image3.cpp
src/image4.cpp
src/rectangles.cpp
src/object_detection.cpp
src/shape_predictor.cpp
...
...
tools/python/src/dlib.cpp
View file @
3f19503a
...
...
@@ -21,6 +21,7 @@ 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_image_classes4
(
py
::
module
&
m
);
void
bind_rectangles
(
py
::
module
&
m
);
void
bind_object_detection
(
py
::
module
&
m
);
void
bind_shape_predictors
(
py
::
module
&
m
);
...
...
@@ -98,6 +99,7 @@ PYBIND11_MODULE(dlib, m)
bind_image_classes
(
m
);
bind_image_classes2
(
m
);
bind_image_classes3
(
m
);
bind_image_classes4
(
m
);
bind_object_detection
(
m
);
bind_shape_predictors
(
m
);
bind_correlation_tracker
(
m
);
...
...
tools/python/src/image2.cpp
View file @
3f19503a
This diff is collapsed.
Click to expand it.
tools/python/src/image4.cpp
0 → 100644
View file @
3f19503a
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