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
154f4354
Commit
154f4354
authored
Mar 07, 2015
by
Davis King
Browse files
Added notes about installing skimage.
parent
8cc8cb5e
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
29 additions
and
0 deletions
+29
-0
python_examples/face_detector.py
python_examples/face_detector.py
+5
-0
python_examples/face_landmark_detection.py
python_examples/face_landmark_detection.py
+6
-0
python_examples/find_candidate_object_locations.py
python_examples/find_candidate_object_locations.py
+6
-0
python_examples/train_object_detector.py
python_examples/train_object_detector.py
+6
-0
python_examples/train_shape_predictor.py
python_examples/train_shape_predictor.py
+6
-0
No files found.
python_examples/face_detector.py
View file @
154f4354
...
...
@@ -28,6 +28,11 @@
# system so long as you have CMake and boost-python installed.
# On Ubuntu, this can be done easily by running the command:
# sudo apt-get install libboost-python-dev cmake
#
# Also note that this example requires scikit-image which can be installed
# via the command:
# pip install -U scikit-image
# Or downloaded from http://scikit-image.org/download.html.
import
sys
...
...
python_examples/face_landmark_detection.py
View file @
154f4354
...
...
@@ -28,6 +28,12 @@
# system so long as you have CMake and boost-python installed.
# On Ubuntu, this can be done easily by running the command:
# sudo apt-get install libboost-python-dev cmake
#
# Also note that this example requires scikit-image which can be installed
# via the command:
# pip install -U scikit-image
# Or downloaded from http://scikit-image.org/download.html.
import
sys
import
os
import
dlib
...
...
python_examples/find_candidate_object_locations.py
View file @
154f4354
...
...
@@ -12,6 +12,12 @@
# the false alarms. Since find_candidate_object_locations() will only generate
# a few thousand rectangles it is much faster than scanning all possible
# rectangles inside an image.
#
# Also note that this example requires scikit-image which can be installed
# via the command:
# pip install -U scikit-image
# Or downloaded from http://scikit-image.org/download.html.
import
dlib
...
...
python_examples/train_object_detector.py
View file @
154f4354
...
...
@@ -15,6 +15,12 @@
# system so long as you have CMake and boost-python installed.
# On Ubuntu, this can be done easily by running the command:
# sudo apt-get install libboost-python-dev cmake
#
# Also note that this example requires scikit-image which can be installed
# via the command:
# pip install -U scikit-image
# Or downloaded from http://scikit-image.org/download.html.
import
os
import
sys
import
glob
...
...
python_examples/train_shape_predictor.py
View file @
154f4354
...
...
@@ -24,6 +24,12 @@
# system so long as you have CMake and boost-python installed.
# On Ubuntu, this can be done easily by running the command:
# sudo apt-get install libboost-python-dev cmake
#
# Also note that this example requires scikit-image which can be installed
# via the command:
# pip install -U scikit-image
# Or downloaded from http://scikit-image.org/download.html.
import
os
import
sys
import
glob
...
...
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