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