Commit ba37c88f authored by Davis King's avatar Davis King

Clarified examples now that we have more object detectors in the library.

parent 20afefd7
...@@ -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.
*/ */
......
// 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.
*/ */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment