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
4aed5b2b
Commit
4aed5b2b
authored
Jul 07, 2018
by
Davis King
Browse files
Split image.cpp into two files so builds are more parallelizeable.
parent
ea2fbcab
Changes
4
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
882 additions
and
857 deletions
+882
-857
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/image.cpp
tools/python/src/image.cpp
+0
-857
tools/python/src/image3.cpp
tools/python/src/image3.cpp
+879
-0
No files found.
tools/python/CMakeLists.txt
View file @
4aed5b2b
...
@@ -48,6 +48,7 @@ set(python_srcs
...
@@ -48,6 +48,7 @@ set(python_srcs
src/svm_struct.cpp
src/svm_struct.cpp
src/image.cpp
src/image.cpp
src/image2.cpp
src/image2.cpp
src/image3.cpp
src/rectangles.cpp
src/rectangles.cpp
src/object_detection.cpp
src/object_detection.cpp
src/shape_predictor.cpp
src/shape_predictor.cpp
...
...
tools/python/src/dlib.cpp
View file @
4aed5b2b
...
@@ -20,6 +20,7 @@ void bind_sequence_segmenter(py::module& m);
...
@@ -20,6 +20,7 @@ void bind_sequence_segmenter(py::module& m);
void
bind_svm_struct
(
py
::
module
&
m
);
void
bind_svm_struct
(
py
::
module
&
m
);
void
bind_image_classes
(
py
::
module
&
m
);
void
bind_image_classes
(
py
::
module
&
m
);
void
bind_image_classes2
(
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_rectangles
(
py
::
module
&
m
);
void
bind_object_detection
(
py
::
module
&
m
);
void
bind_object_detection
(
py
::
module
&
m
);
void
bind_shape_predictors
(
py
::
module
&
m
);
void
bind_shape_predictors
(
py
::
module
&
m
);
...
@@ -96,6 +97,7 @@ PYBIND11_MODULE(dlib, m)
...
@@ -96,6 +97,7 @@ PYBIND11_MODULE(dlib, m)
bind_rectangles
(
m
);
bind_rectangles
(
m
);
bind_image_classes
(
m
);
bind_image_classes
(
m
);
bind_image_classes2
(
m
);
bind_image_classes2
(
m
);
bind_image_classes3
(
m
);
bind_object_detection
(
m
);
bind_object_detection
(
m
);
bind_shape_predictors
(
m
);
bind_shape_predictors
(
m
);
bind_correlation_tracker
(
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