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
ba37c88f
Commit
ba37c88f
authored
Jan 11, 2014
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clarified examples now that we have more object detectors in the library.
parent
20afefd7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
10 deletions
+18
-10
object_detector_advanced_ex.cpp
examples/object_detector_advanced_ex.cpp
+9
-4
object_detector_ex.cpp
examples/object_detector_ex.cpp
+9
-6
No files found.
examples/object_detector_advanced_ex.cpp
View file @
ba37c88f
...
@@ -2,10 +2,15 @@
...
@@ -2,10 +2,15 @@
/*
/*
This is an example illustrating the process for defining custom
This is an example illustrating the process for defining custom
feature extractors for use with the structural_object_detection_trainer.
bag-of-visual-word style feature extractors for use with the
structural_object_detection_trainer.
NOTICE: This example assumes you are familiar with the contents of the
object_detector_ex.cpp example program.
NOTICE: This example assumes you are familiar with the contents of the
object_detector_ex.cpp example program. Also, if the objects you want to
detect are somewhat rigid in appearance (e.g. faces, pedestrians, etc.)
then you should try the methods shown in the fhog_object_detector_ex.cpp
example program before trying to use the bag-of-visual-word tools shown in
this example.
*/
*/
...
...
examples/object_detector_ex.cpp
View file @
ba37c88f
// The contents of this file are in the public domain. See LICENSE_FOR_EXAMPLE_PROGRAMS.txt
// The contents of this file are in the public domain. See LICENSE_FOR_EXAMPLE_PROGRAMS.txt
/*
/*
This is an example illustrating the use of the dlib tools for
This is an example illustrating the use of dlib's bag-of-visual-word based
detecting objects in images. In this example we will create
tools for detecting objects in images. In this example we will create three
three simple images, each containing some white squares. We
simple images, each containing some white squares. We will then use the
will then use the sliding window classifier tools to learn to
sliding window classifier tools to learn to detect these squares.
detect these squares.
If the objects you want to detect are somewhat rigid in appearance (e.g.
faces, pedestrians, etc.) then you should try the methods shown in the
fhog_object_detector_ex.cpp example program before trying to use the
bag-of-visual-word tools shown in this example.
*/
*/
...
...
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